diff options
| author | Johan Herland | 2010-10-28 17:05:39 +0200 |
|---|---|---|
| committer | Lars Hjemli | 2010-11-10 00:22:41 +0100 |
| commit | 52558a6d39d52e2b2968b622534b0ffa4da285cb (patch) | |
| tree | 57039f23e4bf4387ec64e6ed8b993af704e37c6c /ui-log.c | |
| parent | 53f487dd71b597b0771359f2125388af0913f25e (diff) | |
| download | cgit-52558a6d39d52e2b2968b622534b0ffa4da285cb.tar.gz cgit-52558a6d39d52e2b2968b622534b0ffa4da285cb.tar.bz2 cgit-52558a6d39d52e2b2968b622534b0ffa4da285cb.zip | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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); |
