diff options
author | Xinchen Hui <laruence@php.net> | 2014-12-02 21:23:39 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-12-02 21:23:39 +0800 |
commit | b19333663a872a8b0b8c799781236b5cd5bfa47a (patch) | |
tree | 53186d395633ab5f5aecac65d02e178686cc8d71 | |
parent | 8199278ffb2a2a16bcec191455f38d37fa3a292d (diff) | |
download | php-git-b19333663a872a8b0b8c799781236b5cd5bfa47a.tar.gz |
Unecessary assignment
-rw-r--r-- | Zend/zend_opcode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 59e62149f2..c15f6e1bc6 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -55,7 +55,6 @@ void init_op_array(zend_op_array *op_array, zend_uchar type, int initial_ops_siz op_array->refcount = (uint32_t *) emalloc(sizeof(uint32_t)); *op_array->refcount = 1; op_array->last = 0; - op_array->opcodes = NULL; op_array_alloc_ops(op_array, initial_ops_size); op_array->last_var = 0; |