cgit.c: do not segfault on unexpected query-string format

The querystring_cb() function will be invoked with a NULL value when
the querystring contains a name not followed by a '='. Such a value
used to cause a segfault, which this patch fixes.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
这个提交包含在:
Lars Hjemli 2009-08-17 09:05:13 +02:00
父节点 8a631b1173
当前提交 435a1da8d1
共有 1 个文件被更改,包括 3 次插入0 次删除

3
cgit.c
查看文件

@ -132,6 +132,9 @@ void config_cb(const char *name, const char *value)
static void querystring_cb(const char *name, const char *value)
{
if (!value)
value = "";
if (!strcmp(name,"r")) {
ctx.qry.repo = xstrdup(value);
ctx.repo = cgit_get_repoinfo(value);