Skip to content

Commit

Permalink
grep: fix segfault when "git grep '('" is given
Browse files Browse the repository at this point in the history
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
torvalds authored and gitster committed Apr 28, 2009
1 parent d649048 commit c922b01
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions grep.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
struct grep_expr *x;

p = *list;
if (!p)
return NULL;
switch (p->token) {
case GREP_PATTERN: /* atom */
case GREP_PATTERN_HEAD:
Expand All @@ -66,8 +68,6 @@ static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
case GREP_OPEN_PAREN:
*list = p->next;
x = compile_pattern_or(list);
if (!x)
return NULL;
if (!*list || (*list)->token != GREP_CLOSE_PAREN)
die("unmatched parenthesis");
*list = (*list)->next;
Expand All @@ -83,6 +83,8 @@ static struct grep_expr *compile_pattern_not(struct grep_pat **list)
struct grep_expr *x;

p = *list;
if (!p)
return NULL;
switch (p->token) {
case GREP_NOT:
if (!p->next)
Expand Down Expand Up @@ -361,6 +363,8 @@ static int match_expr_eval(struct grep_opt *o,
{
int h = 0;

if (!x)
die("Not a valid grep expression");
switch (x->node) {
case GREP_NODE_ATOM:
h = match_one_pattern(o, x->u.atom, bol, eol, ctx);
Expand Down
4 changes: 4 additions & 0 deletions t/t7002-grep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ test_expect_success setup '
git commit -m initial
'

test_expect_success 'grep should not segfault with a bad input' '
test_must_fail git grep "("
'

for H in HEAD ''
do
case "$H" in
Expand Down

0 comments on commit c922b01

Please sign in to comment.