[NTDLL/LDR]

- Fix incorrect DLL notify flag check. Spotted by Amine.

svn path=/trunk/; revision=54501
This commit is contained in:
Aleksey Bragin
2011-11-26 10:00:33 +00:00
parent e0127be5e0
commit b687932799
+1 -1
View File
@@ -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 */