summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-07-08 11:33:18 +0400
committerDmitry Stogov <dmitry@zend.com>2014-07-08 11:33:18 +0400
commit7ba7dd1943bb4c1746f11b10461ac091cddc5aae (patch)
tree036d6e865e088567b169cd1d06fe81800855db45
parent8ce2f2caacc99c8a579ebfaa078ac9a063e2936f (diff)
parente5fed097cc9361f43bd7c7fdee5e17181bfdac4e (diff)
downloadphp-git-7ba7dd1943bb4c1746f11b10461ac091cddc5aae.tar.gz
Merge branch 'phpng' of git.php.net:php-src into phpng
* 'phpng' of git.php.net:php-src: Fixed uninitialized symbol_table
-rw-r--r--Zend/zend_execute.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index 717177a698..4037345144 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -228,6 +228,7 @@ static zend_always_inline zend_execute_data *zend_vm_stack_push_call_frame(zend_
call->called_scope = called_scope;
call->object = object;
call->prev_nested_call = prev;
+ call->symbol_table = NULL;
return call;
}