Skip to content

Commit 24f63b1

Browse files
committed
Fix broken merge
1 parent 80a722a commit 24f63b1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Zend/zend_compile.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -737,11 +737,7 @@ void zend_do_free(znode *op1) /* {{{ */
737737
}
738738
}
739739

740-
opline = get_next_op(CG(active_op_array));
741-
742-
opline->opcode = ZEND_FREE;
743-
SET_NODE(opline->op1, op1);
744-
SET_UNUSED(opline->op2);
740+
zend_emit_op(NULL, ZEND_FREE, op1, NULL);
745741
} else if (op1->op_type == IS_VAR) {
746742
zend_op *opline = &CG(active_op_array)->opcodes[CG(active_op_array)->last-1];
747743
while (opline->opcode == ZEND_END_SILENCE ||

0 commit comments

Comments
 (0)