cgit

commit 144e3c6085cfea95868a799ee976ed221dd86d8a

Author: Christian Hesse <mail@eworm.de>

ui-atom: fix resource leak: free before return

Coverity-id: 13946
Signed-off-by: Christian Hesse <mail@eworm.de>

 ui-atom.c | 3 ++-


diff --git a/ui-atom.c b/ui-atom.c
index d7138fbbaee4c6769e58af8bbef345d081b77279..fab4b0fd8d50bbb83b2129227394e65f606f058a 100644
--- a/ui-atom.c
+++ b/ui-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);
 }