From: Dmitry Stogov Date: Tue, 12 Mar 2019 12:13:52 +0000 (+0300) Subject: Fixed ZTS cache usage X-Git-Tag: php-7.4.0alpha1~774 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25d4af9413b478393b9bc92fdb585495d56d8e25;p=php Fixed ZTS cache usage --- diff --git a/sapi/phpdbg/phpdbg_utils.h b/sapi/phpdbg/phpdbg_utils.h index 84b1f5c511..c212056670 100644 --- a/sapi/phpdbg/phpdbg_utils.h +++ b/sapi/phpdbg/phpdbg_utils.h @@ -111,7 +111,7 @@ static zend_always_inline zend_execute_data *phpdbg_user_execute_data(zend_execu #define PHPDBG_OUTPUT_BACKUP_DEFINES() \ zend_output_globals *output_globals_ptr; \ zend_output_globals original_output_globals; \ - output_globals_ptr = TSRMG_BULK(output_globals_id, zend_output_globals *); + output_globals_ptr = TSRMG_BULK_STATIC(output_globals_id, zend_output_globals *); #else #define PHPDBG_OUTPUT_BACKUP_DEFINES() \ zend_output_globals *output_globals_ptr; \