Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-08-09 20:13:14 +0300
committerJunio C Hamano <gitster@pobox.com>2019-08-09 20:13:14 +0300
commitd2422a99ccce96c9618357827c84bad6110dee4a (patch)
tree166fe60667f18d2d6b6d9a89975fad7abf43e8be
parent9179380aa616af0118bb85288e6a1b5c5c91b7ef (diff)
parent86ad3ea5cff8fa09180408e610b269390c1f4848 (diff)
Merge branch 'rs/plug-strbuf-reak-in-read-alt-refs'
Leakfix. * rs/plug-strbuf-reak-in-read-alt-refs: sha1-file: release strbuf after use
-rw-r--r--sha1-file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sha1-file.c b/sha1-file.c
index 84fd02f107..487ea35d2d 100644
--- a/sha1-file.c
+++ b/sha1-file.c
@@ -799,6 +799,7 @@ static void read_alternate_refs(const char *path,
fclose(fh);
finish_command(&cmd);
+ strbuf_release(&line);
}
struct alternate_refs_data {