diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-04-14 11:49:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-04-14 11:49:09 -0700 |
commit | d2ae751b1cae0674e0a1f7fe4da0a341365cefbb (patch) | |
tree | b17a8284ef636947f9a85f15fbfa965919bd1654 | |
parent | Merge branch 'jn/doc-fast-import-no-16-octopus-limit' (diff) | |
parent | streaming.c: fix a memleak (diff) | |
download | tgif-d2ae751b1cae0674e0a1f7fe4da0a341365cefbb.tar.xz |
Merge branch 'sb/plug-streaming-leak'
* sb/plug-streaming-leak:
streaming.c: fix a memleak
-rw-r--r-- | streaming.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/streaming.c b/streaming.c index 2ff036a0fa..811fcc24d2 100644 --- a/streaming.c +++ b/streaming.c @@ -507,8 +507,11 @@ int stream_blob_to_fd(int fd, unsigned const char *sha1, struct stream_filter *f int result = -1; st = open_istream(sha1, &type, &sz, filter); - if (!st) + if (!st) { + if (filter) + free_stream_filter(filter); return result; + } if (type != OBJ_BLOB) goto close_and_exit; for (;;) { |