فهرست منبع

kernel/vm_manager: Correct behavior in failure case of UnmapPhysicalMemory()

If an unmapping operation fails, we shouldn't be decrementing the amount
of memory mapped and returning that the operation was successful. We
should actually be returning the error code in this case.
Lioncash 7 سال پیش
والد
کامیت
96cc9a9279
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      src/core/hle/kernel/vm_manager.cpp

+ 2 - 0
src/core/hle/kernel/vm_manager.cpp

@@ -447,6 +447,8 @@ ResultCode VMManager::UnmapPhysicalMemory(VAddr target, u64 size) {
                                map_size, MemoryState::Heap, VMAPermission::None);
             ASSERT_MSG(remap_res.Succeeded(), "Failed to remap a memory block.");
         }
+
+        return result;
     }
 
     // Update mapped amount