Skip to content

Commit c1e5466

Browse files
committed
Dummy
1 parent 642f965 commit c1e5466

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Zend/zend_compile.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5003,13 +5003,11 @@ static zend_result zend_compile_func_array_map(znode *result, zend_ast_list *arg
50035003
opline->op2_type = IS_VAR;
50045004
opline->op2.var = get_temporary_variable();
50055005
GET_NODE(&value_node, opline->op2);
5006-
zend_emit_op(NULL, ZEND_INIT_DYNAMIC_CALL, NULL, &closure);
5007-
uint32_t opnum_init = get_next_op_number() - 1;
5008-
opline = &CG(active_op_array)->opcodes[opnum_init];
5006+
opline = zend_emit_op(NULL, ZEND_INIT_DYNAMIC_CALL, NULL, &closure);
50095007
opline->extended_value = 1;
5010-
opline = zend_emit_op(NULL, ZEND_SEND_VAR, &value_node, NULL);
5008+
opline = zend_emit_op(NULL, ZEND_SEND_VAR_EX, &value_node, NULL);
50115009
opline->op2.opline_num = 1;
5012-
zend_emit_op(result, ZEND_DO_FCALL, NULL, NULL);
5010+
zend_emit_op(NULL, ZEND_DO_FCALL, NULL, NULL);
50135011

50145012
zend_emit_jump(opnum_fetch);
50155013

0 commit comments

Comments
 (0)