From bf608cfae114c620c218ab1874669d8d058c8246 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Tue, 5 Sep 2017 19:08:01 +0000 Subject: [PATCH] [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 --- reactos/drivers/filesystems/fastfat/fsctl.c | 2 ++ 1 file changed, 2 insertions(+) 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; }