about summary refs log tree commit diff stats
path: root/ui-blob.c
diff options
context:
space:
mode:
authorChristian Hesse2015-10-10 16:56:23 +0200
committerJason A. Donenfeld2015-10-10 21:39:25 +0200
commit7320bfa893bdb8ff873c3827c3dac1ce0d4034ea (patch)
treece013a13b23619f165b37fcff9063cf54742a11e /ui-blob.c
parentui-blob: fix resource leak: free before return (diff)
downloadcgit-7320bfa893bdb8ff873c3827c3dac1ce0d4034ea.tar.gz
cgit-7320bfa893bdb8ff873c3827c3dac1ce0d4034ea.zip
ui-blob: fix resource leak: free before return
Coverity-id: 13944
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-blob.c')
-rw-r--r--ui-blob.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui-blob.c b/ui-blob.c index 70a671e..1ded839 100644 --- a/ui-blob.c +++ b/ui-blob.c
@@ -171,4 +171,5 @@ void cgit_print_blob(const char *hex, char *path, const char *head, int file_onl
171 ctx.page.filename = path; 171 ctx.page.filename = path;
172 cgit_print_http_headers(); 172 cgit_print_http_headers();
173 html_raw(buf, size); 173 html_raw(buf, size);
174 free(buf);
174} 175}