Author: pschweitzer Date: Tue Sep 5 19:08:01 2017 New Revision: 75767
URL: http://svn.reactos.org/svn/reactos?rev=75767&view=rev Log: [FASTFAT] Fix a bug: - IRP information was never set in VfatIsVolumeDirty() and thus dirty status was never copied back to the caller
Modified: trunk/reactos/drivers/filesystems/fastfat/fsctl.c
Modified: trunk/reactos/drivers/filesystems/fastfat/fsctl.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfat... ============================================================================== --- trunk/reactos/drivers/filesystems/fastfat/fsctl.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/fastfat/fsctl.c [iso-8859-1] Tue Sep 5 19:08:01 2017 @@ -1021,6 +1021,8 @@ *Flags |= VOLUME_IS_DIRTY; }
+ IrpContext->Irp->IoStatus.Information = sizeof(ULONG); + return STATUS_SUCCESS; }