Author: pschweitzer
Date: Wed Sep 6 11:48:42 2017
New Revision: 75771
URL:
http://svn.reactos.org/svn/reactos?rev=75771&view=rev
Log:
[FASTFAT]
Don't return uninit status on allocation failure.
Modified:
trunk/reactos/drivers/filesystems/fastfat/shutdown.c
Modified: trunk/reactos/drivers/filesystems/fastfat/shutdown.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/shutdown.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/shutdown.c [iso-8859-1] Wed Sep 6 11:48:42
2017
@@ -39,7 +39,7 @@
}
else
{
- Status = IoStatus.Status;
+ Status = STATUS_INSUFFICIENT_RESOURCES;
}
return Status;