diff options
author | Andi Gutmans <andi@php.net> | 1999-08-19 15:15:34 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-08-19 15:15:34 +0000 |
commit | e5fbf4414a1026aa14543eb64634c223e0431969 (patch) | |
tree | 5bb515078d2509fec50ec6b54d55b3b1c1cae4f8 /Zend/zend_opcode.c | |
parent | 4747a40964c860f8f8e10d81faaea283d6ade5d4 (diff) | |
download | php-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.c | 6 |
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; } |