From: Nikita Popov Date: Wed, 12 Jun 2019 11:49:57 +0000 (+0200) Subject: Fix ifdef position X-Git-Tag: php-7.4.0alpha2~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc89d260968746f1048029d711f113d2a9688a13;p=php Fix ifdef position Hopefully fixes the release build... --- diff --git a/ext/mysqlnd/mysqlnd_alloc.c b/ext/mysqlnd/mysqlnd_alloc.c index a1471dd557..e4fe274901 100644 --- a/ext/mysqlnd/mysqlnd_alloc.c +++ b/ext/mysqlnd/mysqlnd_alloc.c @@ -155,8 +155,8 @@ static void * _mysqlnd_ecalloc(unsigned int nmemb, size_t size MYSQLND_MEM_D) { void *ret; zend_bool collect_memory_statistics = MYSQLND_G(collect_memory_statistics); - zend_long * threshold = &MYSQLND_G(debug_ecalloc_fail_threshold); #if PHP_DEBUG + zend_long * threshold = &MYSQLND_G(debug_ecalloc_fail_threshold); TRACE_ALLOC_ENTER(mysqlnd_ecalloc_name); {