UpdateFileRecord() - Remove fixup array before returning.

svn path=/branches/GSoC_2016/NTFS/; revision=71920
This commit is contained in:
Trevor Thompson 2016-07-13 09:26:04 +00:00 committed by Thomas Faber
parent 7c576a836f
commit 268a139e63

View file

@ -1084,6 +1084,9 @@ UpdateFileRecord(PDEVICE_EXTENSION Vcb,
DPRINT1("UpdateFileRecord failed: %I64u written, %u expected\n", BytesWritten, Vcb->NtfsInfo.BytesPerFileRecord);
}
// remove the fixup array (so the file record pointer can still be used)
FixupUpdateSequenceArray(Vcb, file);
return Status;
}