all repos — cgit @ 144e3c6085cfea95868a799ee976ed221dd86d8a

a hyperfast web frontend for git written in c

ui-atom: fix resource leak: free before return

Coverity-id: 13946
Signed-off-by: Christian Hesse <mail@eworm.de>
Christian Hesse mail@eworm.de
Sat, 10 Oct 2015 16:56:26 +0200
commit

144e3c6085cfea95868a799ee976ed221dd86d8a

parent

97da17b783697b4c5430f130ab449121d0692530

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M ui-atom.cui-atom.c

@@ -80,7 +80,7 @@

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 @@ free_commit_list(commit->parents);

commit->parents = NULL; } html("</feed>\n"); + free(host); }