mirror of
https://git.zx2c4.com/cgit
synced 2024-11-08 09:38:41 +00:00
cmd: fix resource leak: free allocation from cgit_currenturl and fmtalloc
Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
3e244a0cca
commit
6f2e4400fa
10
cmd.c
10
cmd.c
@ -41,9 +41,13 @@ static void about_fn(void)
|
|||||||
if (ctx.repo) {
|
if (ctx.repo) {
|
||||||
if (!ctx.qry.path &&
|
if (!ctx.qry.path &&
|
||||||
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
|
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
|
||||||
ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/')
|
ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/') {
|
||||||
cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true);
|
char *currenturl = cgit_currenturl();
|
||||||
else
|
char *redirect = fmtalloc("%s/", currenturl);
|
||||||
|
cgit_redirect(redirect, true);
|
||||||
|
free(currenturl);
|
||||||
|
free(redirect);
|
||||||
|
} else
|
||||||
cgit_print_repo_readme(ctx.qry.path);
|
cgit_print_repo_readme(ctx.qry.path);
|
||||||
} else
|
} else
|
||||||
cgit_print_site_readme();
|
cgit_print_site_readme();
|
||||||
|
Loading…
Reference in New Issue
Block a user