Forgot the increment in the while loop. Thanks to Szaka for spotting this.

(Logical change 1.71)
edge.strict_endians
cantab.net!aia21 2002-12-28 22:28:02 +00:00
parent ed19c0cf08
commit 998104321b
1 changed files with 1 additions and 0 deletions

View File

@ -1348,6 +1348,7 @@ int ntfs_rl_truncate(runlist **arl, const VCN start_vcn)
while (rl->length) {
if (start_vcn < rl[1].vcn)
break;
rl++;
}
if (!rl->length) {
// FIXME: Weird, probably a BUG()!