From: Dmitry Stogov Date: Wed, 17 Jan 2018 11:11:40 +0000 (+0300) Subject: Eliminate useless separations X-Git-Tag: php-7.3.0alpha1~601 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48b4e016801dd00f65ce5d57d2b55e0460228407;p=php Eliminate useless separations --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 2ae5cfb259..60dbf1391c 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -4915,7 +4915,7 @@ PHP_FUNCTION(call_user_func_array) ZEND_PARSE_PARAMETERS_START(2, 2) Z_PARAM_FUNC(fci, fci_cache) - Z_PARAM_ARRAY_EX(params, 0, 1) + Z_PARAM_ARRAY(params) ZEND_PARSE_PARAMETERS_END(); zend_fcall_info_args(&fci, params); @@ -4979,7 +4979,7 @@ PHP_FUNCTION(forward_static_call_array) ZEND_PARSE_PARAMETERS_START(2, 2) Z_PARAM_FUNC(fci, fci_cache) - Z_PARAM_ARRAY_EX(params, 0, 1) + Z_PARAM_ARRAY(params) ZEND_PARSE_PARAMETERS_END(); zend_fcall_info_args(&fci, params);