mirror of
https://github.com/php/php-src.git
synced 2024-12-26 02:10:46 +08:00
Write valid run-time value for Zend Memory Manager
This commit is contained in:
parent
1f12ada0f7
commit
e8f1640adb
@ -488,11 +488,7 @@ PHPAPI void php_print_info(int flag TSRMLS_DC)
|
||||
php_info_print_table_row(2, "Thread Safety", "disabled" );
|
||||
#endif
|
||||
|
||||
#if USE_ZEND_ALLOC
|
||||
php_info_print_table_row(2, "Zend Memory Manager", "enabled" );
|
||||
#else
|
||||
php_info_print_table_row(2, "Zend Memory Manager", "disabled" );
|
||||
#endif
|
||||
php_info_print_table_row(2, "Zend Memory Manager", is_zend_mm(TSRMLS_C) ? "enabled" : "disabled" );
|
||||
|
||||
{
|
||||
char buf[1024];
|
||||
|
Loading…
Reference in New Issue
Block a user