summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-23 17:27:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-23 17:27:42 (GMT)
commit34ad5a52b44d1b95f3b8833c02a0920f3454755b (patch)
tree633ed4e6b0d487b4b65202b9fcfbe6e4670b0785 /diff.c
parentc3c7797e1d151417333296ab3720614c1e235094 (diff)
parent42536dd9b9829b4eb4e3706e141b3c8bffa3e826 (diff)
downloadgit-34ad5a52b44d1b95f3b8833c02a0920f3454755b.zip
git-34ad5a52b44d1b95f3b8833c02a0920f3454755b.tar.gz
git-34ad5a52b44d1b95f3b8833c02a0920f3454755b.tar.bz2
Merge branch 'jm/maint-diff-words-with-sbe'
* jm/maint-diff-words-with-sbe: do not read beyond end of malloc'd buffer
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/diff.c b/diff.c
index ba5f7aa..8f4815b 100644
--- a/diff.c
+++ b/diff.c
@@ -1117,8 +1117,16 @@ static void fn_out_consume(void *priv, char *line, unsigned long len)
emit_line(ecbdata->opt, plain, reset, line, len);
fputs("~\n", ecbdata->opt->file);
} else {
- /* don't print the prefix character */
- emit_line(ecbdata->opt, plain, reset, line+1, len-1);
+ /*
+ * Skip the prefix character, if any. With
+ * diff_suppress_blank_empty, there may be
+ * none.
+ */
+ if (line[0] != '\n') {
+ line++;
+ len--;
+ }
+ emit_line(ecbdata->opt, plain, reset, line, len);
}
return;
}