sapi/cli/php_cli.c: fix typos (#15057)

This commit is contained in:
lwlinux 2024-07-22 13:41:02 +08:00 committed by GitHub
parent 9f74329bb6
commit 15470bd16c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
} }