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
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5

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
} }