From 041476f4ae1eecce97acd7b02c871b373d4cc0e5 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Tue, 5 Jul 2016 14:53:20 +0200 Subject: [PATCH] Closure::fromCallable(): Fix stack corruption So the tests work at least... --- Zend/zend_closures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_closures.c b/Zend/zend_closures.c index 8d101ddcc8..5c5e8a6cb5 100644 --- a/Zend/zend_closures.c +++ b/Zend/zend_closures.c @@ -269,6 +269,7 @@ static int zend_create_closure_from_callable(zval *return_value, zval *callable, zend_fcall_info_cache fcc; zend_function *mptr; zval instance; + zend_internal_function call; if (!zend_is_callable_ex(callable, NULL, 0, NULL, &fcc, error)) { return FAILURE; @@ -280,7 +281,6 @@ static int zend_create_closure_from_callable(zval *return_value, zval *callable, } if (mptr->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) { - zend_internal_function call; memset(&call, 0, sizeof(zend_internal_function)); call.type = ZEND_INTERNAL_FUNCTION; -- 2.40.0