1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix compile without ZEND_MM_STORAGE

This commit is contained in:
Niels Dossche
2025-06-05 21:51:30 +02:00
parent 444cc78a3e
commit 4162c20787

View File

@@ -3043,7 +3043,7 @@ ZEND_API zend_mm_storage *zend_mm_get_storage(zend_mm_heap *heap)
#if ZEND_MM_STORAGE #if ZEND_MM_STORAGE
return heap->storage; return heap->storage;
#else #else
return NULL return NULL;
#endif #endif
} }