Răsfoiți Sursa

Merge pull request #10178 from ronikirla/2-hour-crash

Fix read access violation after 2 hours of gameplay in PMD: RTDX
liamwhite 3 ani în urmă
părinte
comite
e7b6389e44
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      src/common/address_space.inc

+ 1 - 1
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
                 // 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;