X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/03de473354dc8c17a3b23a973b5cc67752ad20cb..6f2e4400faebd829f905c824400f933fe07f5c30:/cmd.c diff --git a/cmd.c b/cmd.c index 20c80b0..3093c62 100644 --- a/cmd.c +++ b/cmd.c @@ -41,9 +41,13 @@ static void about_fn(void) if (ctx.repo) { if (!ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' && - ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/') - cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true); - else + ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/') { + char *currenturl = cgit_currenturl(); + char *redirect = fmtalloc("%s/", currenturl); + cgit_redirect(redirect, true); + free(currenturl); + free(redirect); + } else cgit_print_repo_readme(ctx.qry.path); } else cgit_print_site_readme(); @@ -142,7 +146,7 @@ static void tree_fn(void) } #define def_cmd(name, want_repo, want_vpath, is_clone) \ - {#name, name##_fn, NULL, want_repo, want_vpath, is_clone} + {#name, name##_fn, want_repo, want_vpath, is_clone} struct cgit_cmd *cgit_get_cmd(void) {