all repos — cgit @ 3de63b264c36888dfd42dfdf3fc0aad4ce0c2b5c

a hyperfast web frontend for git written in c

Don't be fooled by trailing '/' in url-parameter

cgit_parse_url() didn't check if the path-part of urls contained a
real path or just a trailing slash. This made the log-page die since
the path filtering supplied an invalid path argument. This fixes it.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Fri, 18 May 2007 13:06:45 +0200
commit

3de63b264c36888dfd42dfdf3fc0aad4ce0c2b5c

parent

72fa5c63f80262019d807658cc537c9897c4b1d1

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M parsing.cparsing.c

@@ -167,7 +167,8 @@ cgit_query_repo = cgit_repo->url;

p = strchr(cmd + 1, '/'); if (p) { p[0] = '\0'; - cgit_query_path = xstrdup(p + 1); + if (p[1]) + cgit_query_path = xstrdup(p + 1); } cgit_cmd = cgit_get_cmd_index(cmd + 1); cgit_query_page = xstrdup(cmd + 1);