mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
sorry for the break fixed the build
svn path=/trunk/; revision=32575
This commit is contained in:
@@ -962,11 +962,14 @@ MmSecureVirtualMemory(PVOID Address,
|
||||
SIZE_T Length,
|
||||
ULONG Mode)
|
||||
{
|
||||
if ( ( Address + Length) > MmHighestUserAddress) ||
|
||||
(Address + Length <= Address ) )
|
||||
{
|
||||
|
||||
if ( ( (PBYTE)Address + Length > (PBYTE)MmHighestUserAddress) ||
|
||||
( (PBYTE)Address + Length <= (PBYTE)Address ) )
|
||||
/* Only works for user space */
|
||||
if (MmHighestUserAddress < Address)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
UNIMPLEMENTED;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user