Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
refs: change signatures of get_packed_refs() and get_loose_refs()
[gitweb.git]
/
streaming.c
diff --git
a/streaming.c
b/streaming.c
index 25c9a209bb1ba9cec8bb49623ae45fc19fdca2c7..71072e1b1da670cdb4b048a3a6e83a4ae806bf5f 100644
(file)
--- a/
streaming.c
+++ b/
streaming.c
@@
-94,7
+94,9
@@
struct git_istream {
int close_istream(struct git_istream *st)
{
- return st->vtbl->close(st);
+ int r = st->vtbl->close(st);
+ free(st);
+ return r;
}
ssize_t read_istream(struct git_istream *st, char *buf, size_t sz)