summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-09 12:53:59 -0700
committerJunio C Hamano <gitster@pobox.com>2014-09-09 12:53:59 -0700
commit1bada2b0ccd19ca40c18f01cb4d66675d32d385c (patch)
tree27a31d3c616dd647e350ad64cb4c3d256ff5c639
parent7b4164063e9d2a36058052ae250d4c52a0335bd1 (diff)
parent94204bf505c290ffbe86e55f8aaee23be66164e0 (diff)
downloadgit-1bada2b0ccd19ca40c18f01cb4d66675d32d385c.tar.gz
Merge branch 'mm/log-branch-desc-plug-leak'
* mm/log-branch-desc-plug-leak: builtin/log.c: fix minor memory leak
-rw-r--r--builtin/log.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/log.c b/builtin/log.c
index 4389722b4b..e4d812208d 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -864,6 +864,7 @@ static void add_branch_description(struct strbuf *buf, const char *branch_name)
strbuf_addbuf(buf, &desc);
strbuf_addch(buf, '\n');
}
+ strbuf_release(&desc);
}
static char *find_branch_name(struct rev_info *rev)