diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-31 13:56:59 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-31 13:56:59 +0000 |
commit | f2d703e916e767e86c2d6434e809f29f6906f5fc (patch) | |
tree | d15df1e02c73ceac0b796190be44e48f0b537b42 /Zend/zend_compile.c | |
parent | 400ee6caa0353d8b32797dad345be6da1dd07e2f (diff) | |
download | php-git-f2d703e916e767e86c2d6434e809f29f6906f5fc.tar.gz |
- Nuke undefined_variable_string
- Introduce IS_UNSET
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 45e6c5372e..66176f2c72 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -741,10 +741,8 @@ void do_receive_arg(int op, znode *var, znode *offset, znode *initialization, un opline->opcode = op; opline->result = *var; opline->op1 = *offset; - if ((op == ZEND_RECV_INIT) && initialization) { + if ((op == ZEND_RECV_INIT)) { opline->op2 = *initialization; - } else { - SET_UNUSED(opline->op2); } if (pass_type==BYREF_FORCE && !CG(active_op_array)->arg_types) { int i; |