Skip to content

Commit 607cf2b

Browse files
committed
Fix
1 parent 3085dc1 commit 607cf2b

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
@@ -1281,8 +1281,8 @@ static void *zend_mm_alloc_pages(zend_mm_heap *heap, uint32_t pages_count ZEND_F
12811281

12821282
#ifdef __SANITIZE_ADDRESS__
12831283
zend_mm_chunk *main_chunk = heap->main_chunk;
1284-
zend_mm_chunk *main_next_chunk = heap->main_chunk->next;
12851284
ZEND_MM_UNPOISON_CHUNK_HDR(main_chunk);
1285+
zend_mm_chunk *main_next_chunk = heap->main_chunk->next;
12861286
ZEND_MM_UNPOISON_CHUNK_HDR(main_next_chunk);
12871287
#endif
12881288
chunk->next = heap->main_chunk->next;

0 commit comments

Comments
 (0)