Author: pschweitzer
Date: Sat Feb 4 17:52:39 2017
New Revision: 73678
URL: http://svn.reactos.org/svn/reactos?rev=73678&view=rev
Log:
[FASTFAT]
Drop a hack that seems no longer needed
Modified:
trunk/reactos/drivers/filesystems/fastfat/close.c
Modified: trunk/reactos/drivers/filesystems/fastfat/close.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfa…
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/close.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/close.c [iso-8859-1] Sat Feb 4 17:52:39 2017
@@ -86,13 +86,7 @@
IrpContext->Irp->IoStatus.Information = 0;
return STATUS_SUCCESS;
}
-#if 0
- /* There occurs a dead look at the call to CcRosDeleteFileCache/ObDereferenceObject/VfatClose
- in CmLazyCloseThreadMain if VfatClose is execute asynchronous in a worker thread. */
if (!ExAcquireResourceExclusiveLite(&IrpContext->DeviceExt->DirResource, BooleanFlagOn(IrpContext->Flags, IRPCONTEXT_CANWAIT)))
-#else
- if (!ExAcquireResourceExclusiveLite(&IrpContext->DeviceExt->DirResource, TRUE))
-#endif
{
return VfatMarkIrpContextForQueue(IrpContext);
}
Author: tfaber
Date: Sat Feb 4 17:41:14 2017
New Revision: 73677
URL: http://svn.reactos.org/svn/reactos?rev=73677&view=rev
Log:
[BOOTLIB]
- Zero the correct structure in EtfsOpen. CID 1341378
Modified:
trunk/reactos/boot/environ/lib/io/etfs.c
Modified: trunk/reactos/boot/environ/lib/io/etfs.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/environ/lib/io/etfs.c…
==============================================================================
--- trunk/reactos/boot/environ/lib/io/etfs.c [iso-8859-1] (original)
+++ trunk/reactos/boot/environ/lib/io/etfs.c [iso-8859-1] Sat Feb 4 17:41:14 2017
@@ -601,7 +601,7 @@
}
/* Zero it out */
- RtlZeroMemory(NewFile, sizeof(*EtfsFile));
+ RtlZeroMemory(EtfsFile, sizeof(*EtfsFile));
/* Capture the device ID of the directory */
NewFile->DeviceId = Directory->DeviceId;