Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
odb_load_loose_cache: fix strbuf leak
author
Jeff King
<peff@peff.net>
Thu, 22 Nov 2018 17:53:00 +0000
(12:53 -0500)
committer
Junio C Hamano
<gitster@pobox.com>
Sat, 24 Nov 2018 02:13:24 +0000
(11:13 +0900)
Commit
3a2e0824
("object-store: provide helpers for loose_objects_cache",
2018-11-12) moved the cache-loading code from find_short_object_filename(),
but forgot the line that releases the path strbuf.
Reported-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1-file.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
97b2fa0
)
diff --git
a/sha1-file.c
b/sha1-file.c
index e53da0b7013bc281f398565ddcc78bbc9a291319..b8efc4fc8ee7c419dca13927f3070965d9a3f19d 100644
(file)
--- a/
sha1-file.c
+++ b/
sha1-file.c
@@
-2169,6
+2169,7
@@
void odb_load_loose_cache(struct object_directory *odb, int subdir_nr)
NULL, NULL,
&odb->loose_objects_cache);
odb->loose_objects_subdir_seen[subdir_nr] = 1;
+ strbuf_release(&buf);
}
static int check_stream_sha1(git_zstream *stream,