ui-plain: fix resource leak: free before return

Coverity-id: 13940
Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Christian Hesse 2015-10-09 14:55:49 +02:00 committed by Jason A. Donenfeld
parent 51338f7658
commit 979db79a80
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ static int print_object(const unsigned char *sha1, const char *path)
cgit_print_http_headers();
html_raw(buf, size);
free(mimetype);
free(buf);
return 1;
}