summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2015-06-16 17:51:18 +0200
committerNikita Popov <nikic@php.net>2015-06-16 17:51:18 +0200
commit44b7489fefe1f377a2b5aacca5461fede3298cea (patch)
tree25cc9cd4581ec7a9019c253758eb8918cf197f41 /ext/reflection/php_reflection.c
parent52e9a772a33fe3fac17f99257c3c5cc767801f66 (diff)
downloadphp-git-44b7489fefe1f377a2b5aacca5461fede3298cea.tar.gz
Drop now superflous check for VIA_TRAMPOLINE
This is not handled by USE_ARG_INFO.
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 4a2d7ccfa3..2252233c47 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -2998,9 +2998,7 @@ ZEND_METHOD(reflection_type, __toString)
case IS_OBJECT:
if (param->fptr->type == ZEND_INTERNAL_FUNCTION &&
!(param->fptr->common.fn_flags & ZEND_ACC_USER_ARG_INFO)) {
- if (!(param->fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE)) {
- RETURN_STRING(((zend_internal_arg_info*)param->arg_info)->class_name);
- }
+ RETURN_STRING(((zend_internal_arg_info*)param->arg_info)->class_name);
}
RETURN_STR_COPY(param->arg_info->class_name);
case IS_STRING: RETURN_STRINGL("string", sizeof("string") - 1);