mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:48:35 +00:00
kernel: Add missing address space check in SetMemoryAttribute syscall (#2771)
This commit is contained in:
parent
0d174cbd45
commit
e7e65ccbc9
|
@ -845,6 +845,11 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|||
|
||||
KProcess process = KernelStatic.GetCurrentProcess();
|
||||
|
||||
if (!process.MemoryManager.InsideAddrSpace(position, size))
|
||||
{
|
||||
return KernelResult.InvalidMemState;
|
||||
}
|
||||
|
||||
KernelResult result = process.MemoryManager.SetMemoryAttribute(
|
||||
position,
|
||||
size,
|
||||
|
|
Loading…
Reference in a new issue