From: Nikita Popov Date: Wed, 11 Dec 2019 10:15:02 +0000 (+0100) Subject: Remove ZEND_PARSE_PARAMS_QUIET from spl_autoload_register() X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05e6a11b5bf2cc62e0fd10fcc3a6035c3add6c45;p=php Remove ZEND_PARSE_PARAMS_QUIET from spl_autoload_register() --- diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 341029a543..d79d2dec21 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -510,7 +510,7 @@ PHP_FUNCTION(spl_autoload_register) zend_object *obj_ptr; zend_fcall_info_cache fcc; - if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "|zbb", &zcallable, &do_throw, &prepend) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "|zbb", &zcallable, &do_throw, &prepend) == FAILURE) { return; }