aboutsummaryrefslogtreecommitdiff
path: root/convert.c
diff options
context:
space:
mode:
authorRene Scharfe <l.s.r@web.de>2017-08-30 19:49:40 +0200
committerJunio C Hamano <gitster@pobox.com>2017-09-07 08:49:27 +0900
commitf31f1d395131f84acbee14f42af8f702bca14468 (patch)
tree59a6a3f3e76fc569ff2077c23db9a0d235c20588 /convert.c
parentf13992917b97766a29ecd05caea7f74431fb30a6 (diff)
downloadgit-f31f1d395131f84acbee14f42af8f702bca14468.tar.gz
git-f31f1d395131f84acbee14f42af8f702bca14468.tar.xz
convert: release strbuf on error return in filter_buffer_or_fd()
Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'convert.c')
-rw-r--r--convert.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/convert.c b/convert.c
index c5f0b2103..4a0ed8d3c 100644
--- a/convert.c
+++ b/convert.c
@@ -423,8 +423,10 @@ static int filter_buffer_or_fd(int in, int out, void *data)
child_process.in = -1;
child_process.out = out;
- if (start_command(&child_process))
+ if (start_command(&child_process)) {
+ strbuf_release(&cmd);
return error("cannot fork to run external filter '%s'", params->cmd);
+ }
sigchain_push(SIGPIPE, SIG_IGN);