From 48b4e016801dd00f65ce5d57d2b55e0460228407 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 17 Jan 2018 14:11:40 +0300 Subject: [PATCH] Eliminate useless separations --- ext/standard/basic_functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.40.0