diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-03-20 12:03:45 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-03-20 12:06:42 +0100 |
commit | abc457fe1ddba07b1574744593f81ce1005025cd (patch) | |
tree | 58fc8fdf2e7a4810734e5e793e032d1bd823afea /Zend/zend_API.h | |
parent | ed808c59e47ee95b81fc769da512d84683ac0a7c (diff) | |
download | php-git-abc457fe1ddba07b1574744593f81ce1005025cd.tar.gz |
Fixed bug #74345
Export zend_release_fcall_info_cache(). It is only necessary to
call it if the fcc may not have been used -- if it is passed to
zend_call_function() and friends, then they will take care of
freeing trampolines.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 21ba965000..00a39f6624 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -302,6 +302,7 @@ ZEND_API ZEND_COLD void zend_wrong_param_count(void); #define IS_CALLABLE_STRICT (IS_CALLABLE_CHECK_IS_STATIC) +ZEND_API void zend_release_fcall_info_cache(zend_fcall_info_cache *fcc); ZEND_API zend_string *zend_get_callable_name_ex(zval *callable, zend_object *object); ZEND_API zend_string *zend_get_callable_name(zval *callable); ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint32_t check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error); |