projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e3d90e
)
builtin-grep: terminate correctly at EOF
author
Junio C Hamano
<junkio@cox.net>
Thu, 4 May 2006 04:03:25 +0000
(21:03 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Thu, 4 May 2006 04:03:25 +0000
(21:03 -0700)
It barfed and segfaulted with an incomplete line.
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-grep.c
patch
|
blob
|
history
diff --git
a/builtin-grep.c
b/builtin-grep.c
index
2124fa6
..
e87b5cb
100644
(file)
--- a/
builtin-grep.c
+++ b/
builtin-grep.c
@@
-264,6
+264,8
@@
static int grep_buffer(struct grep_opt *opt, const char *name,
}
*eol = ch;
bol = eol + 1;
+ if (!left)
+ break;
left--;
lno++;
}