diff options
author | Lars Hjemli <hjemli@gmail.com> | 2009-08-17 10:17:23 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-17 10:17:23 +0200 |
commit | cb92d05b6b729cd0e219b43d7a79aff832a9c1ac (patch) | |
tree | 3324266f779b12bcf9f80ad5ee2f18f535832549 /cgit.c | |
parent | ui-log.c: handle lightweight tags when printing commit decorations (diff) | |
parent | cgit.c: do not segfault on unexpected query-string format (diff) | |
download | cgit-pink-cb92d05b6b729cd0e219b43d7a79aff832a9c1ac.tar.gz cgit-pink-cb92d05b6b729cd0e219b43d7a79aff832a9c1ac.zip |
Merge branch 'stable'
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c index 66dd140..5816f3d 100644 --- a/cgit.c +++ b/cgit.c @@ -177,6 +177,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); |