Skip to content

Commit 5f7f9e8

Browse files
committed
Fix
1 parent 7feed59 commit 5f7f9e8

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
@@ -2587,7 +2587,7 @@ ZEND_API void zend_mm_shutdown(zend_mm_heap *heap, bool full, bool silent)
25872587
zend_mm_chunk *q = p->next;
25882588
p->next = heap->cached_chunks;
25892589
heap->cached_chunks = p;
2590-
ZEND_MM_POISON_CHUNK(p);
2590+
ZEND_MM_POISON_CHUNK(p, heap);
25912591
p = q;
25922592
ZEND_MM_UNPOISON_CHUNK_HDR(p);
25932593
heap->chunks_count--;

0 commit comments

Comments
 (0)