https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e9e14be6618d0a0bebba556c57eb3fb478c9f45f
commit e9e14be6618d0a0bebba556c57eb3fb478c9f45f Author: Pierre Schweitzer <[email protected]> AuthorDate: Mon May 21 10:41:59 2018 +0200 Commit: Pierre Schweitzer <[email protected]> CommitDate: Mon May 21 10:41:59 2018 +0200 [FASTFAT] Properly queue pending write IRPs. Addendum to 30b836b --- drivers/filesystems/fastfat/rw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/filesystems/fastfat/rw.c b/drivers/filesystems/fastfat/rw.c index ad65628876..043bafef6c 100644 --- a/drivers/filesystems/fastfat/rw.c +++ b/drivers/filesystems/fastfat/rw.c @@ -1067,6 +1067,7 @@ VfatWrite( if (!ExAcquireResourceExclusiveLite(&IrpContext->DeviceExt->DirResource, CanWait)) { + Status = STATUS_PENDING; goto ByeBye; }
