about summary refs log tree commit diff stats
path: root/ui-tree.c
diff options
context:
space:
mode:
authorChristian Hesse2015-10-09 13:15:44 +0200
committerJason A. Donenfeld2015-10-09 13:58:25 +0200
commit896cd69dde04832f6b551f681b92bd4557092427 (patch)
tree62cfea388610819c05ea5e38b0c5b56385a30f08 /ui-tree.c
parentAvoid use of non-reentrant functions (diff)
downloadcgit-896cd69dde04832f6b551f681b92bd4557092427.tar.gz
cgit-896cd69dde04832f6b551f681b92bd4557092427.zip
ui-tree: fix resource leak: free before return
Coverity-id: 13938
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui-tree.c b/ui-tree.c index 1b310d5..d71503d 100644 --- a/ui-tree.c +++ b/ui-tree.c
@@ -143,6 +143,7 @@ static int ls_item(const unsigned char *sha1, struct strbuf *base,
143 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>", 143 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
144 name, 144 name,
145 sha1_to_hex(sha1)); 145 sha1_to_hex(sha1));
146 free(name);
146 return 0; 147 return 0;
147 } 148 }
148 } 149 }