summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2009-02-11 18:15:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-11 18:25:24 (GMT)
commitfa3a0c94dc88567b513e58835e5915f87da40af9 (patch)
tree2190019be95e90d1d708836e4834e2a96a2a3545 /sha1_file.c
parent3d20c636af05c44a6ff4df9309c2bca108ee149b (diff)
downloadgit-fa3a0c94dc88567b513e58835e5915f87da40af9.zip
git-fa3a0c94dc88567b513e58835e5915f87da40af9.tar.gz
git-fa3a0c94dc88567b513e58835e5915f87da40af9.tar.bz2
Clear the delta base cache if a pack is rebuilt
There is some risk that re-opening a regenerated pack file with different offsets could leave stale entries within the delta base cache that could be matched up against other objects using the same "struct packed_git*" and pack offset. Throwing away the entire delta base cache in this case is safer, as we don't have to worry about a recycled "struct packed_git*" matching to the wrong base object, resulting in delta apply errors while unpacking an object. Suggested-by: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sha1_file.c b/sha1_file.c
index cbcae24..bea958e 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -676,6 +676,7 @@ void free_pack_by_name(const char *pack_name)
while (*pp) {
p = *pp;
if (strcmp(pack_name, p->pack_name) == 0) {
+ clear_delta_base_cache();
close_pack_windows(p);
if (p->pack_fd != -1)
close(p->pack_fd);