]> git.cameronkatri.com Git - cgit.git/commit
parsing: clear query path before starting
authorJohn Keeping <john@keeping.me.uk>
Sun, 19 Feb 2017 12:17:05 +0000 (12:17 +0000)
committerJason A. Donenfeld <Jason@zx2c4.com>
Thu, 10 Aug 2017 14:05:07 +0000 (16:05 +0200)
commitc699866699411346c5dba406457581013f85a873
tree1cf7f58d5884852f13f9ae6fbaffffaf0411812c
parent1b4ef6783a71962f8b5da3a23f2830f0f0f55ea0
parsing: clear query path before starting

By specifying the "url" query parameter multiple times it is possible to
end up with ctx.qry.vpath set while ctx.repo is null, which triggers an
invalid code path from cgit_print_pageheader() while printing path
crumbs, resulting in a null dereference.

The previous patch fixed this segfault, but it makes no sense for us to
clear ctx.repo while leaving ctx.qry.path set to the previous value, so
let's just clear it here so that the last "url" parameter given takes
full effect rather than partially overriding the effect of the previous
value.

Signed-off-by: John Keeping <john@keeping.me.uk>
parsing.c