diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-11-12 05:37:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-11 23:40:33 -0800 |
commit | a74fa1106dd29390077025e7f176cf6b53eada62 (patch) | |
tree | c273bfb5a9585accfb1cf1f4e52e44b621877728 /builtin-for-each-ref.c | |
parent | 53e780c8f662bb937dc66a698c34fa2407cff31b (diff) | |
download | git-a74fa1106dd29390077025e7f176cf6b53eada62.tar.gz |
for-each-ref: fix off by one read.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-for-each-ref.c')
-rw-r--r-- | builtin-for-each-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index 29f70aabc3..0327f40306 100644 --- a/builtin-for-each-ref.c +++ b/builtin-for-each-ref.c @@ -297,7 +297,7 @@ static const char *find_wholine(const char *who, int wholen, const char *buf, un if (!eol) return ""; eol++; - if (eol[1] == '\n') + if (*eol == '\n') return ""; /* end of header */ buf = eol; } |