mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
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>
This commit is contained in:
parent
72fa5c63f8
commit
3de63b264c
@ -167,7 +167,8 @@ void cgit_parse_url(const char *url)
|
|||||||
p = strchr(cmd + 1, '/');
|
p = strchr(cmd + 1, '/');
|
||||||
if (p) {
|
if (p) {
|
||||||
p[0] = '\0';
|
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_cmd = cgit_get_cmd_index(cmd + 1);
|
||||||
cgit_query_page = xstrdup(cmd + 1);
|
cgit_query_page = xstrdup(cmd + 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user