From b388e951b829f614ec72708de56242d7c0b4a02e Mon Sep 17 00:00:00 2001 From: Martin Vobruba Date: Tue, 3 May 2022 10:35:52 +0200 Subject: [PATCH] Fix build with Valgrind without I_REPLACE_SONAME_FNNAME_ZU symbol Fixes #8453 Signed-off-by: George Peter Banyard --- Zend/zend_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_string.c b/Zend/zend_string.c index c24d5dfcdb4..8e6a16c64af 100644 --- a/Zend/zend_string.c +++ b/Zend/zend_string.c @@ -368,7 +368,7 @@ ZEND_API void zend_interned_strings_switch_storage(bool request) /* Even if we don't build with valgrind support, include the symbol so that valgrind available * only at runtime will not result in false positives. */ -#ifndef HAVE_VALGRIND +#ifndef I_REPLACE_SONAME_FNNAME_ZU # define I_REPLACE_SONAME_FNNAME_ZU(soname, fnname) _vgr00000ZU_ ## soname ## _ ## fnname #endif