diff options
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_opcode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index c15f6e1bc6..59e62149f2 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -55,6 +55,7 @@ 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; |