diff options
author | Christian Hesse <mail@eworm.de> | 2015-10-10 16:56:23 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-10-10 21:39:25 +0200 |
commit | 7320bfa893bdb8ff873c3827c3dac1ce0d4034ea (patch) | |
tree | ce013a13b23619f165b37fcff9063cf54742a11e /ui-blob.c | |
parent | 30802126d48e145191a281a7f43109edfbcf490f (diff) |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -171,4 +171,5 @@ void cgit_print_blob(const char *hex, char *path, const char *head, int file_onl ctx.page.filename = path; cgit_print_http_headers(); html_raw(buf, size); + free(buf); } |