diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-11 00:32:26 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-11 00:32:26 +0100 |
commit | 9b27ea95189b1f276c9f7e10df81fa1476a4ad4d (patch) | |
tree | 8116ae20f73dc9596be6be72628012b699680056 /fast-import.c | |
parent | gitweb: add $prevent_xss option to prevent XSS by repository content (diff) | |
parent | Clear the delta base cache during fast-import checkpoint (diff) | |
download | git-9b27ea95189b1f276c9f7e10df81fa1476a4ad4d.tar.xz git-9b27ea95189b1f276c9f7e10df81fa1476a4ad4d.zip |
Merge branch 'maint-1.6.0' into maint
* maint-1.6.0:
Clear the delta base cache during fast-import checkpoint
Diffstat (limited to 'fast-import.c')
-rw-r--r-- | fast-import.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fast-import.c b/fast-import.c index f0e08aca70..23e970d581 100644 --- a/fast-import.c +++ b/fast-import.c @@ -944,6 +944,7 @@ static void end_packfile(void) { struct packed_git *old_p = pack_data, *new_p; + clear_delta_base_cache(); if (object_count) { char *idx_name; int i; |