mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-30 07:29:02 -05:00 
			
		
		
		
	Merge pull request #1481 from lioncash/typo
svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
This commit is contained in:
		| @@ -95,12 +95,12 @@ ResultCode MapUnmapMemorySanityChecks(const VMManager& vm_manager, VAddr dst_add | ||||
|  | ||||
|     const VAddr dst_end_address = dst_addr + size; | ||||
|     if (dst_end_address > vm_manager.GetHeapRegionBaseAddress() && | ||||
|         dst_addr < vm_manager.GetHeapRegionEndAddress()) { | ||||
|         vm_manager.GetHeapRegionEndAddress() > dst_addr) { | ||||
|         return ERR_INVALID_MEMORY_RANGE; | ||||
|     } | ||||
|  | ||||
|     if (dst_end_address > vm_manager.GetNewMapRegionBaseAddress() && | ||||
|         dst_addr < vm_manager.GetMapRegionEndAddress()) { | ||||
|     if (dst_end_address > vm_manager.GetMapRegionBaseAddress() && | ||||
|         vm_manager.GetMapRegionEndAddress() > dst_addr) { | ||||
|         return ERR_INVALID_MEMORY_RANGE; | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bunnei
					bunnei