mirror of
https://github.com/git-for-windows/git.git
synced 2026-04-27 18:11:59 -05:00
count-delta: fix counting of copied source.
The previous one wrongly coalesced a span with the next one even though the span being added does not reach it. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
@@ -26,7 +26,7 @@ static void touch_range(struct span **span,
|
||||
again:
|
||||
if (ofs < e->end) {
|
||||
while (e->end < end) {
|
||||
if (e->next) {
|
||||
if (e->next && e->next->ofs <= end) {
|
||||
e->end = e->next->ofs;
|
||||
e = e->next;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user