From 7ed36f56e33bd838d06521a37a916516397e9e8b Mon Sep 17 00:00:00 2001
From: Junio C Hamano <junkio@cox.net>
Date: Wed, 3 May 2006 21:03:25 -0700
Subject: [PATCH] builtin-grep: terminate correctly at EOF

It barfed and segfaulted with an incomplete line.

Signed-off-by: Junio C Hamano <junkio@cox.net>
---
 builtin-grep.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/builtin-grep.c b/builtin-grep.c
index 2124fa62e8..e87b5cb48d 100644
--- 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++;
 	}