From 44b7489fefe1f377a2b5aacca5461fede3298cea Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 16 Jun 2015 17:51:18 +0200 Subject: Drop now superflous check for VIA_TRAMPOLINE This is not handled by USE_ARG_INFO. --- ext/reflection/php_reflection.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ext/reflection/php_reflection.c') 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); -- cgit v1.2.1