mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:05:41 +00:00
[NTOS]
- Warn only once in MmSecureVirtualMemory/MmUnsecureVirtualMemory, like it was done in 47864. svn path=/trunk/; revision=47875
This commit is contained in:
parent
e53a466981
commit
5794cf44f1
1 changed files with 2 additions and 2 deletions
|
@ -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 ***************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue