- Warn only once in MmSecureVirtualMemory/MmUnsecureVirtualMemory, like it was done in 47864.

svn path=/trunk/; revision=47875
This commit is contained in:
Aleksey Bragin 2010-06-27 21:18:59 +00:00
parent e53a466981
commit 5794cf44f1

View file

@ -742,7 +742,7 @@ MmSecureVirtualMemory(IN PVOID Address,
IN SIZE_T Length,
IN ULONG Mode)
{
UNIMPLEMENTED;
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
return Address;
}
@ -753,7 +753,7 @@ VOID
NTAPI
MmUnsecureVirtualMemory(IN PVOID SecureMem)
{
UNIMPLEMENTED;
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
}
/* SYSTEM CALLS ***************************************************************/