mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[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). svn path=/trunk/; revision=57411
This commit is contained in:
parent
20c880bf33
commit
23d6a39557
1 changed files with 0 additions and 7 deletions
|
@ -586,13 +586,6 @@ FsRtlNotifyFilterChangeDirectory(IN PNOTIFY_SYNC NotifySync,
|
||||||
/* Allocate new notification */
|
/* Allocate new notification */
|
||||||
NotifyChange = ExAllocatePoolWithTag(PagedPool | POOL_RAISE_IF_ALLOCATION_FAILURE,
|
NotifyChange = ExAllocatePoolWithTag(PagedPool | POOL_RAISE_IF_ALLOCATION_FAILURE,
|
||||||
sizeof(NOTIFY_CHANGE), 'FSrN');
|
sizeof(NOTIFY_CHANGE), 'FSrN');
|
||||||
|
|
||||||
/*
|
|
||||||
* If NotifyChange == NULL then an
|
|
||||||
* exception was already raised.
|
|
||||||
*/
|
|
||||||
ASSERT(NotifyChange != NULL);
|
|
||||||
|
|
||||||
RtlZeroMemory(NotifyChange, sizeof(NOTIFY_CHANGE));
|
RtlZeroMemory(NotifyChange, sizeof(NOTIFY_CHANGE));
|
||||||
|
|
||||||
/* Set basic information */
|
/* Set basic information */
|
||||||
|
|
Loading…
Reference in a new issue