Skip to content

Commit d933b69

Browse files
committed
Bump
1 parent 8358ec8 commit d933b69

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
@@ -929,9 +929,9 @@ static zend_always_inline void zend_mm_chunk_init(zend_mm_heap *heap, zend_mm_ch
929929
chunk->next = heap->main_chunk;
930930
ZEND_MM_UNPOISON_CHUNK_HDR(heap->main_chunk);
931931
chunk->prev = heap->main_chunk->prev;
932-
ZEND_MM_POISON_CHUNK_HDR(heap->main_chunk, heap);
933932
chunk->prev->next = chunk;
934933
chunk->next->prev = chunk;
934+
ZEND_MM_POISON_CHUNK_HDR(heap->main_chunk, heap);
935935
/* mark first pages as allocated */
936936
chunk->free_pages = ZEND_MM_PAGES - ZEND_MM_FIRST_PAGE;
937937
chunk->free_tail = ZEND_MM_FIRST_PAGE;

0 commit comments

Comments
 (0)