diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-17 08:48:17 (JST) |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-01-17 08:48:17 (JST) |
commit | 9999b0a3e915c76a52be433830660e803ef71cb0 (patch) | |
tree | 0e58f794759f5828a5d344a5b4164605eeee30fb | |
parent | f60ffa143cca61e9729ac71033e1a556cf422871 (diff) | |
download | cgit-9999b0a3e915c76a52be433830660e803ef71cb0.zip cgit-9999b0a3e915c76a52be433830660e803ef71cb0.tar.gz |
cgit.c: free tmp variable
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | cgit.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -591,6 +591,7 @@ static int prepare_repo_cmd(void) | |||
591 | cgit_print_pageheader(); | 591 | cgit_print_pageheader(); |
592 | cgit_print_error("Invalid branch: %s", tmp); | 592 | cgit_print_error("Invalid branch: %s", tmp); |
593 | cgit_print_docend(); | 593 | cgit_print_docend(); |
594 | free(tmp); | ||
594 | return 1; | 595 | return 1; |
595 | } | 596 | } |
596 | sort_string_list(&ctx.repo->submodules); | 597 | sort_string_list(&ctx.repo->submodules); |