From 861e65557f14a0d93af780c71d82f194404dd563 Mon Sep 17 00:00:00 2001 From: Rene Scharfe Date: Wed, 30 Aug 2017 19:49:35 +0200 Subject: [PATCH] check-ref-format: release strbuf after use in check_ref_format_branch() Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- builtin/check-ref-format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/check-ref-format.c b/builtin/check-ref-format.c index eac499450f..6c40ff110b 100644 --- a/builtin/check-ref-format.c +++ b/builtin/check-ref-format.c @@ -45,6 +45,7 @@ static int check_ref_format_branch(const char *arg) if (strbuf_check_branch_ref(&sb, arg)) die("'%s' is not a valid branch name", arg); printf("%s\n", sb.buf + 11); + strbuf_release(&sb); return 0; } -- 2.11.4.GIT