mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-28 18:33:14 +00:00
MemArena: Bail on Arch64 if the out_ptr allocation fails
This commit is contained in:
parent
5a2340fead
commit
4a59750b30
@ -214,10 +214,11 @@ static bool Memory_TryBase(u8 *base, const MemoryView *views, int num_views, u32
|
||||
{
|
||||
*views[i].out_ptr = (u8*)arena->CreateView(
|
||||
position, views[i].size, base + (views[i].virtual_address & 0x3FFFFFFF));
|
||||
if (!*views[i].out_ptr)
|
||||
goto bail;
|
||||
}
|
||||
#endif
|
||||
if (!*views[i].out_ptr)
|
||||
goto bail;
|
||||
|
||||
last_position = position;
|
||||
position += views[i].size;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user