From: Nikita Popov Date: Tue, 5 May 2015 19:40:28 +0000 (+0200) Subject: Fix build X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~93^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0c68a94068dcaa8d862b0bfb3dabb5223cb196a;p=php Fix build --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 76159479f2..f7dd5531d0 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -1717,7 +1717,7 @@ ZEND_METHOD(reflection_function, getClosure) } GET_REFLECTION_OBJECT_PTR(fptr); - zend_create_closure(return_value, fptr, NULL, NULL); + zend_create_closure(return_value, fptr, NULL, NULL, NULL); } /* }}} */ @@ -2827,7 +2827,7 @@ ZEND_METHOD(reflection_method, getClosure) GET_REFLECTION_OBJECT_PTR(mptr); if (mptr->common.fn_flags & ZEND_ACC_STATIC) { - zend_create_closure(return_value, mptr, mptr->common.scope, NULL); + zend_create_closure(return_value, mptr, mptr->common.scope, mptr->common.scope, NULL); } else { if (zend_parse_parameters(ZEND_NUM_ARGS(), "o", &obj) == FAILURE) { return; @@ -2844,7 +2844,7 @@ ZEND_METHOD(reflection_method, getClosure) { RETURN_ZVAL(obj, 1, 0); } else { - zend_create_closure(return_value, mptr, mptr->common.scope, obj); + zend_create_closure(return_value, mptr, mptr->common.scope, Z_OBJCE_P(obj), obj); } } }