about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c index 0375c5a..d280e95 100644 --- a/cmd.c +++ b/cmd.c
@@ -39,9 +39,10 @@ static void atom_fn(void)
39static void about_fn(void) 39static void about_fn(void)
40{ 40{
41 if (ctx.repo) { 41 if (ctx.repo) {
42 size_t path_info_len = ctx.env.path_info ? strlen(ctx.env.path_info) : 0;
42 if (!ctx.qry.path && 43 if (!ctx.qry.path &&
43 ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' && 44 ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
44 ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/') { 45 (!path_info_len || ctx.env.path_info[path_info_len - 1] != '/')) {
45 char *currenturl = cgit_currenturl(); 46 char *currenturl = cgit_currenturl();
46 char *redirect = fmtalloc("%s/", currenturl); 47 char *redirect = fmtalloc("%s/", currenturl);
47 cgit_redirect(redirect, true); 48 cgit_redirect(redirect, true);