git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] packfile: release bad_objects in close_pack()
@ 2021-09-24  6:10 René Scharfe
  2021-09-24 20:21 ` Jeff King
  0 siblings, 1 reply; 2+ messages in thread
From: René Scharfe @ 2021-09-24  6:10 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano

Unusable entries of a damaged pack file are recorded in the oidset
bad_objects.  Release it when we're done with the pack.

This doesn't affect intact packs because an empty oidset requires
no allocation.

Signed-off-by: René Scharfe <l.s.r@web.de>
---
 packfile.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/packfile.c b/packfile.c
index 0e92bd7bd2..89402cfc69 100644
--- a/packfile.c
+++ b/packfile.c
@@ -339,6 +339,7 @@ void close_pack(struct packed_git *p)
 	close_pack_fd(p);
 	close_pack_index(p);
 	close_pack_revindex(p);
+	oidset_clear(&p->bad_objects);
 }

 void close_object_store(struct raw_object_store *o)
--
2.33.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-24 20:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-24  6:10 [PATCH] packfile: release bad_objects in close_pack() René Scharfe
2021-09-24 20:21 ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).