summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-08-19 15:15:34 +0000
committerAndi Gutmans <andi@php.net>1999-08-19 15:15:34 +0000
commite5fbf4414a1026aa14543eb64634c223e0431969 (patch)
tree5bb515078d2509fec50ec6b54d55b3b1c1cae4f8 /Zend/zend_opcode.c
parent4747a40964c860f8f8e10d81faaea283d6ade5d4 (diff)
downloadphp-git-e5fbf4414a1026aa14543eb64634c223e0431969.tar.gz
- Make sure expr_list and echo_list are either empty or comma seperated
expressions
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index cc7b896127..0e0eddf698 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -215,6 +215,12 @@ zend_op *get_next_op(zend_op_array *op_array CLS_DC)
next_op->filename = zend_get_compiled_filename();
next_op->result.op_type = IS_UNUSED;
next_op->extended_value = 0;
+ next_op->op1.u.EA.var = 0;
+ next_op->op1.u.EA.type = 0;
+ next_op->op2.u.EA.var = 0;
+ next_op->op2.u.EA.type = 0;
+ next_op->result.u.EA.var = 0;
+ next_op->result.u.EA.type = 0;
return next_op;
}