xdl_change_compact(): fix compaction heuristic to adjust ixo
authorMichael Haggerty <mhagger@alum.mit.edu>
Mon, 22 Aug 2016 11:22:40 +0000 (13:22 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 23 Aug 2016 20:51:47 +0000 (13:51 -0700)
The code branch used for the compaction heuristic forgot to keep ixo in
sync while the group was shifted. This is certainly wrong, as it causes
the two counters to get out of sync.

I *think* that this bug could also have caused the function to read past
the end of the rchgo array, though I haven't done the work to prove it
for sure. Here is my reasoning:

If ixo is not decremented correctly during one iteration of the outer
while loop, then it will loose sync with the ix counter. In particular,
ixo will be too large.

Suppose that the next iterations of the outer while loop (i.e.,
processing the next block of add/delete lines) don't have any sliders.
Then the ixo counter would be incremented by the number of non-changed
lines in xdf, which is the same as the number of non-changed lines in
xdfo that *should have* followed the group that experienced the
malfunction. But since ixo was too large at the end of that iteration,
it will be incremented past the end of the xdfo->rchg array, and will
try to read that memory illegally.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
xdiff/xdiffi.c
index b3c684887502c3c473a614114e4acdfbc57ea094..95b037ee38fdea4e007b825f9619a0b6760d195d 100644 (file)
@@ -528,6 +528,7 @@ int xdl_change_compact(xdfile_t *xdf, xdfile_t *xdfo, long flags) {
                               recs_match(recs, ixs - 1, ix - 1, flags)) {
                                rchg[--ixs] = 1;
                                rchg[--ix] = 0;
+                               while (rchgo[--ixo]);
                        }
                }
        }