Skip to content

Commit 99d5624

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Fix compile without ZEND_MM_STORAGE
2 parents 19b1173 + 976143e commit 99d5624

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
@@ -3417,7 +3417,7 @@ ZEND_API zend_mm_storage *zend_mm_get_storage(zend_mm_heap *heap)
34173417
#if ZEND_MM_STORAGE
34183418
return heap->storage;
34193419
#else
3420-
return NULL
3420+
return NULL;
34213421
#endif
34223422
}
34233423

0 commit comments

Comments
 (0)