From 1ca6ca876e3553d9609823a70d168c50d7beba7e Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 20 Oct 2006 18:48:18 -0700 Subject: [PATCH] git-pickaxe: fix nth_line() We would want to be able to refer to the end of the file as "the beginning of Nth line" for a file that is N lines long. Signed-off-by: Junio C Hamano --- builtin-pickaxe.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builtin-pickaxe.c b/builtin-pickaxe.c index 74c7c9a33..b595299bf 100644 --- a/builtin-pickaxe.c +++ b/builtin-pickaxe.c @@ -1085,6 +1085,9 @@ static int prepare_lines(struct scoreboard *sb) bol = 1; } } + sb->lineno = xrealloc(sb->lineno, + sizeof(int* ) * (num + incomplete + 1)); + sb->lineno[num + incomplete] = buf - sb->final_buf; sb->num_lines = num + incomplete; return sb->num_lines; } -- 2.30.2