diff options
author | John Keeping <john@keeping.me.uk> | 2017-02-19 15:27:48 +0300 |
---|---|---|
committer | Lukas Fleischer <lfleischer@lfos.de> | 2017-08-10 16:15:56 +0300 |
commit | fdcd7dc8186e8d928876ae858b7d2d3a87d29453 (patch) | |
tree | 6aaca987f01bd2bcd3d7f126db5e8ee7cf3f0d06 /ui-shared.c | |
parent | 67e2b69ec96a117b98c9028013ce0258574efe80 (diff) |
ui-shared: don't print path crumbs without a repo
cgit_print_path_crumbs() can call repolink() which assumes that ctx.repo
is non-null. Currently we don't have any commands that set want_vpath
without also setting want_repo so it shouldn't be possible to fail this
test, but the check in cgit.c is in the wrong order so it is possible to
specify a query string like "?p=log&path=foo/bar" to end up here without
a valid repository.
This was found by American fuzzy lop [0].
[0] http://lcamtuf.coredump.cx/afl/
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 2e4fcd9..e5c9a02 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -1039,7 +1039,7 @@ void cgit_print_pageheader(void) free(currenturl); } html("</td></tr></table>\n"); - if (ctx.env.authenticated && ctx.qry.vpath) { + if (ctx.env.authenticated && ctx.repo && ctx.qry.vpath) { html("<div class='path'>"); html("path: "); cgit_print_path_crumbs(ctx.qry.vpath); |