mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
drop unused parameter from zend_startup
This commit is contained in:
parent
9f6f6fe219
commit
df6e9fae8f
3 changed files with 3 additions and 3 deletions
|
@ -773,7 +773,7 @@ static zend_bool php_auto_globals_create_globals(zend_string *name) /* {{{ */
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
int zend_startup(zend_utility_functions *utility_functions, char **extensions) /* {{{ */
|
||||
int zend_startup(zend_utility_functions *utility_functions) /* {{{ */
|
||||
{
|
||||
#ifdef ZTS
|
||||
zend_compiler_globals *compiler_globals;
|
||||
|
|
|
@ -234,7 +234,7 @@ typedef int (*zend_write_func_t)(const char *str, size_t str_length);
|
|||
#define zend_first_try EG(bailout)=NULL; zend_try
|
||||
|
||||
BEGIN_EXTERN_C()
|
||||
int zend_startup(zend_utility_functions *utility_functions, char **extensions);
|
||||
int zend_startup(zend_utility_functions *utility_functions);
|
||||
void zend_shutdown(void);
|
||||
void zend_register_standard_ini_entries(void);
|
||||
int zend_post_startup(void);
|
||||
|
|
|
@ -2174,7 +2174,7 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod
|
|||
zuf.printf_to_smart_str_function = php_printf_to_smart_str;
|
||||
zuf.getenv_function = sapi_getenv;
|
||||
zuf.resolve_path_function = php_resolve_path_for_zend;
|
||||
zend_startup(&zuf, NULL);
|
||||
zend_startup(&zuf);
|
||||
|
||||
#if HAVE_SETLOCALE
|
||||
setlocale(LC_CTYPE, "");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue