Merge pull request #1481 from lioncash/typo
svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
This commit is contained in:
commit
ffcda6c08e
|
@ -95,12 +95,12 @@ ResultCode MapUnmapMemorySanityChecks(const VMManager& vm_manager, VAddr dst_add
|
||||||
|
|
||||||
const VAddr dst_end_address = dst_addr + size;
|
const VAddr dst_end_address = dst_addr + size;
|
||||||
if (dst_end_address > vm_manager.GetHeapRegionBaseAddress() &&
|
if (dst_end_address > vm_manager.GetHeapRegionBaseAddress() &&
|
||||||
dst_addr < vm_manager.GetHeapRegionEndAddress()) {
|
vm_manager.GetHeapRegionEndAddress() > dst_addr) {
|
||||||
return ERR_INVALID_MEMORY_RANGE;
|
return ERR_INVALID_MEMORY_RANGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dst_end_address > vm_manager.GetNewMapRegionBaseAddress() &&
|
if (dst_end_address > vm_manager.GetMapRegionBaseAddress() &&
|
||||||
dst_addr < vm_manager.GetMapRegionEndAddress()) {
|
vm_manager.GetMapRegionEndAddress() > dst_addr) {
|
||||||
return ERR_INVALID_MEMORY_RANGE;
|
return ERR_INVALID_MEMORY_RANGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue