Author: akhaldi
Date: Mon Oct  7 11:44:07 2013
New Revision: 60570
URL: 
http://svn.reactos.org/svn/reactos?rev=60570&view=rev
Log:
[NTOSKRNL]
* Fix an uninitialized pointer read. CID 1102504.
CORE-6681
Modified:
    trunk/reactos/ntoskrnl/fsrtl/notify.c
Modified: trunk/reactos/ntoskrnl/fsrtl/notify.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/fsrtl/notify.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/fsrtl/notify.c       [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/fsrtl/notify.c       [iso-8859-1] Mon Oct  7 11:44:07 2013
@@ -503,7 +503,7 @@
 {
     ULONG SavedLength;
     PIO_STACK_LOCATION Stack;
-    PNOTIFY_CHANGE NotifyChange;
+    PNOTIFY_CHANGE NotifyChange = NULL;
     PREAL_NOTIFY_SYNC RealNotifySync;
     PAGED_CODE();