Skip to content

Commit 95970cf

Browse files
committed
Bump
1 parent 5ed58a7 commit 95970cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,10 +1169,10 @@ static void *zend_mm_alloc_pages(zend_mm_heap *heap, uint32_t pages_count ZEND_F
11691169
chunk->next->prev = chunk->prev;
11701170
ZEND_MM_UNPOISON_CHUNK_HDR(heap->main_chunk);
11711171
chunk->next = heap->main_chunk->next;
1172-
ZEND_MM_POISON_CHUNK_HDR(heap->main_chunk, heap);
11731172
chunk->prev = heap->main_chunk;
11741173
chunk->prev->next = chunk;
11751174
chunk->next->prev = chunk;
1175+
ZEND_MM_POISON_CHUNK_HDR(heap->main_chunk, heap);
11761176
}
11771177
/* mark run as allocated */
11781178
chunk->free_pages -= pages_count;

0 commit comments

Comments
 (0)