mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
- Get rid of warning.
This commit is contained in:
@@ -185,8 +185,8 @@ int php_init_config(char *php_ini_path_override)
|
||||
return FAILURE;
|
||||
}
|
||||
|
||||
zend_llist_init(&extension_lists.engine, sizeof(zval), free_estring, 1);
|
||||
zend_llist_init(&extension_lists.functions, sizeof(zval), ZVAL_DESTRUCTOR, 1);
|
||||
zend_llist_init(&extension_lists.engine, sizeof(zval), (llist_dtor_func_t) free_estring, 1);
|
||||
zend_llist_init(&extension_lists.functions, sizeof(zval), (llist_dtor_func_t) ZVAL_DESTRUCTOR, 1);
|
||||
|
||||
safe_mode_state = PG(safe_mode);
|
||||
open_basedir = PG(open_basedir);
|
||||
|
||||
Reference in New Issue
Block a user