[FASTFAT]

Fix a bug:
- IRP information was never set in VfatIsVolumeDirty() and thus dirty status was never copied back to the caller

svn path=/trunk/; revision=75767
This commit is contained in:
Pierre Schweitzer 2017-09-05 19:08:01 +00:00
parent bb567d1320
commit bf608cfae1

View file

@ -1021,6 +1021,8 @@ VfatIsVolumeDirty(
*Flags |= VOLUME_IS_DIRTY;
}
IrpContext->Irp->IoStatus.Information = sizeof(ULONG);
return STATUS_SUCCESS;
}