Fix unused variable warning.

svn path=/trunk/; revision=13029
This commit is contained in:
Gregor Anich 2005-01-13 20:30:59 +00:00
parent bf73503d49
commit 1a99f299a1

View file

@ -393,6 +393,11 @@ MiProtectVirtualMemory(IN PEPROCESS Process,
NewAccessProtection,
OldAccessProtection);
}
else
{
/* FIXME: Should we return failure or success in this case? */
Status = STATUS_SUCCESS;
}
MmUnlockAddressSpace(AddressSpace);