mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Fix read access violation
This commit is contained in:
parent
bb2e407772
commit
a13fd5f7cc
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ MAP_MEMBER(void)::MapLocked(VaType virt, PaType phys, VaType size, ExtraBlockInf
|
||||||
}
|
}
|
||||||
}()};
|
}()};
|
||||||
|
|
||||||
if (block_end_predecessor->virt >= virt) {
|
if (block_end_predecessor != blocks.begin() && block_end_predecessor->virt >= virt) {
|
||||||
// If this block's start would be overlapped by the map then reuse it as a tail
|
// If this block's start would be overlapped by the map then reuse it as a tail
|
||||||
// block
|
// block
|
||||||
block_end_predecessor->virt = virt_end;
|
block_end_predecessor->virt = virt_end;
|
||||||
|
|
Loading…
Reference in a new issue