summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-05-07 05:09:36 +0200
committerGitHub <noreply@github.com>2023-05-07 05:09:36 +0200
commite7b6389e44f23e8337db169e72a040a2c1a0ebbd (patch)
treeca0ff9d7f02110386b294659052ed33aac72adc4
parentMerge pull request #10159 from german77/home_screenshot (diff)
parentFix read access violation (diff)
downloadyuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar.gz
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar.bz2
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar.lz
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar.xz
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.tar.zst
yuzu-e7b6389e44f23e8337db169e72a040a2c1a0ebbd.zip
-rw-r--r--src/common/address_space.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/address_space.inc b/src/common/address_space.inc
index 2195dabd5..c97dc8651 100644
--- a/src/common/address_space.inc
+++ b/src/common/address_space.inc
@@ -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
// block
block_end_predecessor->virt = virt_end;