mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 22:35:39 +01:00
Merge pull request #10187 from Kelebek1/address_space
Fix address space allocator slow path to avoid OOB
This commit is contained in:
commit
1166ca3a57
@ -336,7 +336,7 @@ ALLOC_MEMBER(VaType)::Allocate(VaType size) {
|
||||
ASSERT_MSG(false, "Unexpected allocator state!");
|
||||
}
|
||||
|
||||
auto search_predecessor{this->blocks.begin()};
|
||||
auto search_predecessor{std::next(this->blocks.begin())};
|
||||
auto search_successor{std::next(search_predecessor)};
|
||||
|
||||
while (search_successor != this->blocks.end() &&
|
||||
|
Loading…
Reference in New Issue
Block a user