Merge pull request #1481 from lioncash/typo

svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
This commit is contained in:
bunnei 2018-10-12 20:46:55 -04:00 committed by GitHub
commit ffcda6c08e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
} }