From 4162c2078763acfc692cae12e3fbd0807ad2e003 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Thu, 5 Jun 2025 21:51:30 +0200 Subject: [PATCH] Fix compile without ZEND_MM_STORAGE --- Zend/zend_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index d531270d445..573fd5fa26b 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -3043,7 +3043,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 }