Merge pull request #4355 from lioncash/query
svc: Correct vma_map boundary check within QueryProcessMemory
This commit is contained in:
commit
129ca865b3
|
@ -923,7 +923,7 @@ static ResultCode QueryProcessMemory(MemoryInfo* memory_info, PageInfo* page_inf
|
|||
|
||||
auto vma = process->vm_manager.FindVMA(addr);
|
||||
|
||||
if (vma == g_current_process->vm_manager.vma_map.end())
|
||||
if (vma == process->vm_manager.vma_map.end())
|
||||
return ERR_INVALID_ADDRESS;
|
||||
|
||||
memory_info->base_address = vma->second.base;
|
||||
|
|
Reference in New Issue