ui-atom: fix resource leak: free before return

Coverity-id: 13946
Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Christian Hesse 2015-10-10 16:56:26 +02:00 committed by Jason A. Donenfeld
szülő 97da17b783
commit 144e3c6085
1 fájl változott, egészen pontosan 2 új sor hozzáadva és 1 régi sor törölve

Fájl megtekintése

@ -80,7 +80,7 @@ static void add_entry(struct commit *commit, const char *host)
void cgit_print_atom(char *tip, char *path, int max_count)
{
const char *host;
char *host;
const char *argv[] = {NULL, tip, NULL, NULL, NULL};
struct commit *commit;
struct rev_info rev;
@ -140,4 +140,5 @@ void cgit_print_atom(char *tip, char *path, int max_count)
commit->parents = NULL;
}
html("</feed>\n");
free(host);
}