mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTDLL/LDR]
- Fix incorrect DLL notify flag check. Spotted by Amine. svn path=/trunk/; revision=54501
This commit is contained in:
@@ -24,7 +24,7 @@ NTAPI
|
||||
AVrfPageHeapDllNotification(IN PLDR_DATA_TABLE_ENTRY LdrEntry)
|
||||
{
|
||||
/* Check if page heap dll notification is turned on */
|
||||
if (!(RtlpDphGlobalFlags && DPH_FLAG_DLL_NOTIFY))
|
||||
if (!(RtlpDphGlobalFlags & DPH_FLAG_DLL_NOTIFY))
|
||||
return;
|
||||
|
||||
/* We don't support this flag currently */
|
||||
|
||||
Reference in New Issue
Block a user