diff options
| author | Richard Maw <richard.maw@gmail.com> | 2016-07-02 20:28:10 +0100 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-07-12 01:06:04 +0200 | 
| commit | ff9893ac8192579a00dd4c73ddff18ab232099a6 (patch) | |
| tree | 2045ab39945aa86e6909b6ec2e5b0f6241cb8d80 | |
| parent | git: update to v2.9.1 (diff) | |
| download | cgit-ff9893ac8192579a00dd4c73ddff18ab232099a6.tar.gz cgit-ff9893ac8192579a00dd4c73ddff18ab232099a6.tar.bz2 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 '')
| -rw-r--r-- | cgit.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -616,11 +616,11 @@ static int prepare_repo_cmd(void)  	}  	if (get_sha1(ctx.qry.head, sha1)) { -		char *tmp = xstrdup(ctx.qry.head); -		ctx.qry.head = ctx.repo->defbranch; +		char *old_head = ctx.qry.head; +		ctx.qry.head = xstrdup(ctx.repo->defbranch);  		cgit_print_error_page(404, "Not found", -				"Invalid branch: %s", tmp); -		free(tmp); +				"Invalid branch: %s", old_head); +		free(old_head);  		return 1;  	}  	string_list_sort(&ctx.repo->submodules); | 
