From: Dmitry Stogov Date: Wed, 29 May 2013 07:09:55 +0000 (+0400) Subject: Fixed incorrect argument number X-Git-Tag: php-5.3.27RC1~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13e5c97ffd75821c01bbec79c1d2233c50d36b0e;p=php Fixed incorrect argument number --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 8382b48e4a..0fd1debccc 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -4019,7 +4019,7 @@ void zend_do_shell_exec(znode *result, const znode *cmd TSRMLS_DC) /* {{{ */ break; } opline->op1 = *cmd; - opline->op2.u.opline_num = 0; + opline->op2.u.opline_num = 1; opline->extended_value = ZEND_DO_FCALL; SET_UNUSED(opline->op2);