From: Lars Hjemli Date: Tue, 8 Apr 2008 19:27:12 +0000 (+0200) Subject: Reset ctx.repo to NULL when the config parser is finished X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/c6f747649ace1a92ed5dfaae9cc1ea3affe0bf51?hp=e87e89633383b8b75c68c98be3e0c14212109de2 Reset ctx.repo to NULL when the config parser is finished This global variable is used by the config parsing callback to keep track of the currently configured repository. If it is not reset to NULL when the config parser is finished, and neither `url` or `r` is specified on the querystring, cgit will wrongly consider the last configured repo as selected. Signed-off-by: Lars Hjemli --- diff --git a/cgit.c b/cgit.c index 763242a..6ec763f 100644 --- a/cgit.c +++ b/cgit.c @@ -440,6 +440,7 @@ int main(int argc, const char **argv) parse_configfile(cgit_config_env ? cgit_config_env : CGIT_CONFIG, config_cb); + ctx.repo = NULL; if (getenv("SCRIPT_NAME")) ctx.cfg.script_name = xstrdup(getenv("SCRIPT_NAME")); if (getenv("QUERY_STRING"))