File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ static zend_module_entry **module_post_deactivate_handlers;
43
43
44
44
static zend_class_entry * * class_cleanup_handlers ;
45
45
46
- ZEND_API zend_result _zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array ) /* {{{ */
46
+ ZEND_API zend_result zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array ) /* {{{ */
47
47
{
48
48
zval * param_ptr ;
49
49
uint32_t arg_count ;
Original file line number Diff line number Diff line change @@ -329,15 +329,14 @@ typedef struct _zend_fcall_info_cache {
329
329
ZEND_API int zend_next_free_module (void );
330
330
331
331
BEGIN_EXTERN_C ()
332
- ZEND_API zend_result _zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array );
332
+ ZEND_API zend_result zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array );
333
333
334
334
/* internal function to efficiently copy parameters when executing __call() */
335
335
ZEND_API zend_result zend_copy_parameters_array (uint32_t param_count , zval * argument_array );
336
336
337
+ // TODO Replace _ex version with zend_get_parameters_array()
337
338
#define zend_get_parameters_array (ht , param_count , argument_array ) \
338
- _zend_get_parameters_array_ex(param_count, argument_array)
339
- #define zend_get_parameters_array_ex (param_count , argument_array ) \
340
- _zend_get_parameters_array_ex(param_count, argument_array)
339
+ zend_get_parameters_array_ex(param_count, argument_array)
341
340
#define zend_parse_parameters_none () \
342
341
(EXPECTED(ZEND_NUM_ARGS() == 0) ? SUCCESS : (zend_wrong_parameters_none_error(), FAILURE))
343
342
#define zend_parse_parameters_none_throw () \
You can’t perform that action at this time.
0 commit comments