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

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
  Fix compile without ZEND_MM_STORAGE
This commit is contained in:
Niels Dossche
2025-06-05 21:51:38 +02:00

View File

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