Author: hbelusca
Date: Fri Sep 28 10:01:00 2012
New Revision: 57411
URL: 
http://svn.reactos.org/svn/reactos?rev=57411&view=rev
Log:
[NTOSKRNL]
- Revert rev.57400 only for this file since CID 701342 was a false-positive from Coverity
(because Coverity doesn't know what the aim of the POOL_RAISE_IF_ALLOCATION_FAILURE
is).
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] Fri Sep 28 10:01:00 2012
@@ -586,13 +586,6 @@
         /* Allocate new notification */
         NotifyChange = ExAllocatePoolWithTag(PagedPool |
POOL_RAISE_IF_ALLOCATION_FAILURE,
                                              sizeof(NOTIFY_CHANGE), 'FSrN');
-
-        /*
-         * If NotifyChange == NULL then an
-         * exception was already raised.
-         */
-        ASSERT(NotifyChange != NULL);
-
         RtlZeroMemory(NotifyChange, sizeof(NOTIFY_CHANGE));
         /* Set basic information */