mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed get_defined_functions()
This commit is contained in:
parent
17a009ddce
commit
663990284b
1 changed files with 2 additions and 1 deletions
|
@ -1659,8 +1659,9 @@ ZEND_FUNCTION(get_declared_interfaces)
|
|||
/* }}} */
|
||||
|
||||
|
||||
static int copy_function_name(zend_function *func TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
|
||||
static int copy_function_name(zval *zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
|
||||
{
|
||||
zend_function *func = Z_PTR_P(zv);
|
||||
zval *internal_ar = va_arg(args, zval *),
|
||||
*user_ar = va_arg(args, zval *);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue