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 @@ -283,15 +283,14 @@ typedef struct _zend_fcall_info_cache {
283
283
ZEND_API int zend_next_free_module (void );
284
284
285
285
BEGIN_EXTERN_C ()
286
- ZEND_API zend_result _zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array );
286
+ ZEND_API zend_result zend_get_parameters_array_ex (uint32_t param_count , zval * argument_array );
287
287
288
288
/* internal function to efficiently copy parameters when executing __call() */
289
289
ZEND_API zend_result zend_copy_parameters_array (uint32_t param_count , zval * argument_array );
290
290
291
+ // TODO Replace _ex version with zend_get_parameters_array()
291
292
#define zend_get_parameters_array (ht , param_count , argument_array ) \
292
- _zend_get_parameters_array_ex(param_count, argument_array)
293
- #define zend_get_parameters_array_ex (param_count , argument_array ) \
294
- _zend_get_parameters_array_ex(param_count, argument_array)
293
+ zend_get_parameters_array_ex(param_count, argument_array)
295
294
#define zend_parse_parameters_none () \
296
295
(EXPECTED(ZEND_NUM_ARGS() == 0) ? SUCCESS : (zend_wrong_parameters_none_error(), FAILURE))
297
296
#define zend_parse_parameters_none_throw () \
You can’t perform that action at this time.
0 commit comments