mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-17 01:15:30 +00:00
Fix vm::reserve_map logic
This commit is contained in:
parent
c43a126f62
commit
ec9b896fbf
@ -1060,16 +1060,7 @@ namespace vm
|
||||
}
|
||||
|
||||
lock.upgrade();
|
||||
|
||||
// Fixed allocation
|
||||
if (addr)
|
||||
{
|
||||
// Recheck
|
||||
area = _get_map(location, addr);
|
||||
|
||||
return !area ? _map(addr, area_size, flags) : area;
|
||||
}
|
||||
|
||||
|
||||
// Allocation on arbitrary address
|
||||
if (location != any && location < g_locations.size())
|
||||
{
|
||||
@ -1085,7 +1076,10 @@ namespace vm
|
||||
return loc;
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
// Fixed address allocation
|
||||
area = _get_map(location, addr);
|
||||
|
||||
return !area ? _map(addr, area_size, flags) : area;
|
||||
}
|
||||
|
||||
inline namespace ps3_
|
||||
|
Loading…
Reference in New Issue
Block a user