Skip to content

Commit 976143e

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fix compile without ZEND_MM_STORAGE
2 parents 7a15d2a + 4162c20 commit 976143e

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
@@ -3193,7 +3193,7 @@ ZEND_API zend_mm_storage *zend_mm_get_storage(zend_mm_heap *heap)
31933193
#if ZEND_MM_STORAGE
31943194
return heap->storage;
31953195
#else
3196-
return NULL
3196+
return NULL;
31973197
#endif
31983198
}
31993199

0 commit comments

Comments
 (0)