summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-03-01 14:04:51 +0000
committerAndi Gutmans <andi@php.net>2002-03-01 14:04:51 +0000
commitd1eea3de9c9a1e92a5cd0813c4608b9defef4927 (patch)
treedf42216da86dfeb33d74245e2d27d5d89568c1bb /Zend/zend_opcode.c
parent6f6c4ec7c7a24f98a646c1a485fcac39ea24defd (diff)
downloadphp-git-d1eea3de9c9a1e92a5cd0813c4608b9defef4927.tar.gz
- Fix bug in nested try/catch's
- Infrastructure for implementing imports of methods.
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index d995065119..672a55bf8f 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -76,6 +76,8 @@ void init_op_array(zend_op_array *op_array, int type, int initial_ops_size TSRML
op_array->arg_types = NULL;
+ op_array->scope = NULL;
+
op_array->brk_cont_array = NULL;
op_array->last_brk_cont = 0;
op_array->current_brk_cont = -1;