summaryrefslogtreecommitdiff
path: root/Zend/zend_closures.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2016-07-05 14:53:20 +0200
committerNikita Popov <nikic@php.net>2016-07-05 14:54:35 +0200
commit041476f4ae1eecce97acd7b02c871b373d4cc0e5 (patch)
tree504ba39653d27772b812b6dea08883c773cc4421 /Zend/zend_closures.c
parent2b46e3c71086307d462ee709929f862ba58ee010 (diff)
downloadphp-git-041476f4ae1eecce97acd7b02c871b373d4cc0e5.tar.gz
Closure::fromCallable(): Fix stack corruption
So the tests work at least...
Diffstat (limited to 'Zend/zend_closures.c')
-rw-r--r--Zend/zend_closures.c2
1 files changed, 1 insertions, 1 deletions
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;