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?rev=73677&r1=73676&r2=73677&view=diff
==============================================================================
--- 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;


Reply via email to