Skip to content

Commit 872ff40

Browse files
committed
Dummy
1 parent dbace93 commit 872ff40

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
@@ -5001,13 +5001,11 @@ static zend_result zend_compile_func_array_map(znode *result, zend_ast_list *arg
50015001
opline->op2_type = IS_VAR;
50025002
opline->op2.var = get_temporary_variable();
50035003
GET_NODE(&value_node, opline->op2);
5004-
zend_emit_op(NULL, ZEND_INIT_DYNAMIC_CALL, NULL, &closure);
5005-
uint32_t opnum_init = get_next_op_number() - 1;
5006-
opline = &CG(active_op_array)->opcodes[opnum_init];
5004+
opline = zend_emit_op(NULL, ZEND_INIT_DYNAMIC_CALL, NULL, &closure);
50075005
opline->extended_value = 1;
5008-
opline = zend_emit_op(NULL, ZEND_SEND_VAR, &value_node, NULL);
5006+
opline = zend_emit_op(NULL, ZEND_SEND_VAR_EX, &value_node, NULL);
50095007
opline->op2.opline_num = 1;
5010-
zend_emit_op(result, ZEND_DO_FCALL, NULL, NULL);
5008+
zend_emit_op(NULL, ZEND_DO_FCALL, NULL, NULL);
50115009

50125010
zend_emit_jump(opnum_fetch);
50135011

0 commit comments

Comments
 (0)