aboutsummaryrefslogtreecommitdiffstats
path: root/ui-log.c
diff options
context:
space:
mode:
authorGravatar Johan Herland <johan@herland.net>2010-10-29 00:05:39 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2010-11-10 08:22:41 (JST)
commit52558a6d39d52e2b2968b622534b0ffa4da285cb (patch)
tree57039f23e4bf4387ec64e6ed8b993af704e37c6c /ui-log.c
parent53f487dd71b597b0771359f2125388af0913f25e (diff)
downloadcgit-52558a6d39d52e2b2968b622534b0ffa4da285cb.zip
cgit-52558a6d39d52e2b2968b622534b0ffa4da285cb.tar.gz
ui-log: Prevent crash when given empty range search
Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-log.c b/ui-log.c
index bc0c02c..b9771fa 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -162,7 +162,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
162 162
163 argv[1] = disambiguate_ref(tip); 163 argv[1] = disambiguate_ref(tip);
164 164
165 if (grep && pattern) { 165 if (grep && pattern && *pattern) {
166 if (!strcmp(grep, "grep") || !strcmp(grep, "author") || 166 if (!strcmp(grep, "grep") || !strcmp(grep, "author") ||
167 !strcmp(grep, "committer")) 167 !strcmp(grep, "committer"))
168 argv[argc++] = fmt("--%s=%s", grep, pattern); 168 argv[argc++] = fmt("--%s=%s", grep, pattern);