Skip to content

Commit

Permalink
Merge branch 'rs/combine-diff-zero-context-at-the-beginning' into maint
Browse files Browse the repository at this point in the history
An age-old corner case bug in combine diff (only triggered with -U0
and the hunk at the beginning of the file needs to be shown) has been
fixed.

By René Scharfe
* rs/combine-diff-zero-context-at-the-beginning:
  combine-diff: fix loop index underflow
  • Loading branch information
gitster committed Apr 26, 2012
2 parents b4bd6bb + e5e9b56 commit 10a20b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion combine-diff.c
Expand Up @@ -423,7 +423,7 @@ static int make_hunks(struct sline *sline, unsigned long cnt,
hunk_begin, j);
la = (la + context < cnt + 1) ?
(la + context) : cnt + 1;
while (j <= --la) {
while (la && j <= --la) {
if (sline[la].flag & mark) {
contin = 1;
break;
Expand Down

0 comments on commit 10a20b4

Please sign in to comment.