mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
sapi/cli/php_cli.c: fix typos (#15057)
This commit is contained in:
parent
9f74329bb6
commit
15470bd16c
1 changed files with 2 additions and 2 deletions
|
@ -1293,13 +1293,13 @@ exit_loop:
|
||||||
|
|
||||||
sapi_module->ini_entries = php_ini_builder_finish(&ini_builder);
|
sapi_module->ini_entries = php_ini_builder_finish(&ini_builder);
|
||||||
|
|
||||||
/* startup after we get the above ini override se we get things right */
|
/* startup after we get the above ini override so we get things right */
|
||||||
if (sapi_module->startup(sapi_module) == FAILURE) {
|
if (sapi_module->startup(sapi_module) == FAILURE) {
|
||||||
/* there is no way to see if we must call zend_ini_deactivate()
|
/* there is no way to see if we must call zend_ini_deactivate()
|
||||||
* since we cannot check if EG(ini_directives) has been initialized
|
* since we cannot check if EG(ini_directives) has been initialized
|
||||||
* because the executor's constructor does not set initialize it.
|
* because the executor's constructor does not set initialize it.
|
||||||
* Apart from that there seems no need for zend_ini_deactivate() yet.
|
* Apart from that there seems no need for zend_ini_deactivate() yet.
|
||||||
* So we goto out_err.*/
|
* So we goto out. */
|
||||||
exit_status = 1;
|
exit_status = 1;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue