diff options
author | Mary <mary@mary.zone> | 2023-06-26 03:37:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 01:37:12 +0000 |
commit | 9860bfb2cdb2a3f6093d936d647b1f254a23120d (patch) | |
tree | 4944c305d59daf546b63f1f048b6b9334ed5fb8b /src/Ryujinx.Memory/MemoryManagementWindows.cs | |
parent | f6ada8d1697502a6b37192c9cf9a32acfa28b51a (diff) |
misc: memory: Migrate from OutOfMemoryException to SystemException entirely (#5399)1.1.920
Fix a regression with address space allocation while providing more
information about the context of the exception.
Diffstat (limited to 'src/Ryujinx.Memory/MemoryManagementWindows.cs')
-rw-r--r-- | src/Ryujinx.Memory/MemoryManagementWindows.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.Memory/MemoryManagementWindows.cs b/src/Ryujinx.Memory/MemoryManagementWindows.cs index d7d78bd8..aaed5a63 100644 --- a/src/Ryujinx.Memory/MemoryManagementWindows.cs +++ b/src/Ryujinx.Memory/MemoryManagementWindows.cs @@ -114,7 +114,7 @@ namespace Ryujinx.Memory if (handle == IntPtr.Zero) { - throw new OutOfMemoryException(); + throw new SystemException(Marshal.GetLastPInvokeErrorMessage()); } return handle; @@ -134,7 +134,7 @@ namespace Ryujinx.Memory if (ptr == IntPtr.Zero) { - throw new OutOfMemoryException(); + throw new SystemException(Marshal.GetLastPInvokeErrorMessage()); } return ptr; |