Eliminate useless separations

This commit is contained in:
Dmitry Stogov 2018-01-17 14:11:40 +03:00
parent 8ec8d7f926
commit 48b4e01680

View File

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