mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[NTOS:MM]
- Really only warn once in MmSecureVirtualMemory/MmUnsecureVirtualMemory, not on every 256th call svn path=/trunk/; revision=74263
This commit is contained in:
@@ -2670,7 +2670,7 @@ MmSecureVirtualMemory(IN PVOID Address,
|
||||
IN SIZE_T Length,
|
||||
IN ULONG Mode)
|
||||
{
|
||||
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
static ULONG Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
return Address;
|
||||
}
|
||||
|
||||
@@ -2681,7 +2681,7 @@ VOID
|
||||
NTAPI
|
||||
MmUnsecureVirtualMemory(IN PVOID SecureMem)
|
||||
{
|
||||
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
static ULONG Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
/* SYSTEM CALLS ***************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user