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