From: Pierre Schweitzer Date: Tue, 5 Sep 2017 19:08:01 +0000 (+0000) Subject: [FASTFAT] X-Git-Tag: backups/GSoC_2017/rapps@75905~4^2~39 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=bf608cfae114c620c218ab1874669d8d058c8246 [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 --- diff --git a/reactos/drivers/filesystems/fastfat/fsctl.c b/reactos/drivers/filesystems/fastfat/fsctl.c index 10cd811ce79..ef0a137148e 100644 --- a/reactos/drivers/filesystems/fastfat/fsctl.c +++ b/reactos/drivers/filesystems/fastfat/fsctl.c @@ -1021,6 +1021,8 @@ VfatIsVolumeDirty( *Flags |= VOLUME_IS_DIRTY; } + IrpContext->Irp->IoStatus.Information = sizeof(ULONG); + return STATUS_SUCCESS; }