Skip to content

Commit

Permalink
Fixed ZTS cache usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Mar 12, 2019
1 parent b0d76ed commit 25d4af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sapi/phpdbg/phpdbg_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down

0 comments on commit 25d4af9

Please sign in to comment.