ui-blob: fix resource leak: free before return

Coverity-id: 13943
Signed-off-by: Christian Hesse <mail@eworm.de>
Этот коммит содержится в:
Christian Hesse 2015-10-10 16:56:24 +02:00 коммит произвёл Jason A. Donenfeld
родитель 08a2b818f2
Коммит 30802126d4

Просмотреть файл

@ -99,6 +99,7 @@ int cgit_print_file(char *path, const char *head, int file_only)
return -1;
buf[size] = '\0';
html_raw(buf, size);
free(buf);
return 0;
}