about summary refs log tree commit diff stats
path: root/cgit.c
diff options
context:
space:
mode:
authorRichard Maw2016-07-02 20:28:10 +0100
committerJason A. Donenfeld2016-07-12 01:06:04 +0200
commitff9893ac8192579a00dd4c73ddff18ab232099a6 (patch)
tree2045ab39945aa86e6909b6ec2e5b0f6241cb8d80 /cgit.c
parentgit: update to v2.9.1 (diff)
downloadcgit-ff9893ac8192579a00dd4c73ddff18ab232099a6.tar.gz
cgit-ff9893ac8192579a00dd4c73ddff18ab232099a6.zip
Fix qry.head leak on error
This is run soon before exiting so it wasn't leaked for long.

Signed-off-by: Richard Maw <richard.maw@gmail.com>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cgit.c b/cgit.c index ab3fadb..9427c4a 100644 --- a/cgit.c +++ b/cgit.c
@@ -616,11 +616,11 @@ static int prepare_repo_cmd(void)
616 } 616 }
617 617
618 if (get_sha1(ctx.qry.head, sha1)) { 618 if (get_sha1(ctx.qry.head, sha1)) {
619 char *tmp = xstrdup(ctx.qry.head); 619 char *old_head = ctx.qry.head;
620 ctx.qry.head = ctx.repo->defbranch; 620 ctx.qry.head = xstrdup(ctx.repo->defbranch);
621 cgit_print_error_page(404, "Not found", 621 cgit_print_error_page(404, "Not found",
622 "Invalid branch: %s", tmp); 622 "Invalid branch: %s", old_head);
623 free(tmp); 623 free(old_head);
624 return 1; 624 return 1;
625 } 625 }
626 string_list_sort(&ctx.repo->submodules); 626 string_list_sort(&ctx.repo->submodules);