Skip to content

Commit 13e5c97

Browse files
committed
Fixed incorrect argument number
1 parent 4cb25d2 commit 13e5c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4019,7 +4019,7 @@ void zend_do_shell_exec(znode *result, const znode *cmd TSRMLS_DC) /* {{{ */
40194019
break;
40204020
}
40214021
opline->op1 = *cmd;
4022-
opline->op2.u.opline_num = 0;
4022+
opline->op2.u.opline_num = 1;
40234023
opline->extended_value = ZEND_DO_FCALL;
40244024
SET_UNUSED(opline->op2);
40254025

0 commit comments

Comments
 (0)