Explorar o código

Fix read access violation

Roni Kirla %!s(int64=3) %!d(string=hai) anos
pai
achega
a13fd5f7cc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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
                 // block
                 block_end_predecessor->virt = virt_end;