From: Zeev Suraski Date: Sat, 29 Jan 2000 17:49:05 +0000 (+0000) Subject: Fix ``'s X-Git-Tag: BEFORE_SAPIFICATION_FEB_10_2000~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=400f46430735624fc2b9ecd59371630e745ca3f8;p=php Fix ``'s --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 9f583761d8..3bbacfe2a7 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1649,7 +1649,7 @@ void do_shell_exec(znode *result, znode *cmd CLS_DC) opline = get_next_op(CG(active_op_array) CLS_CC); opline->opcode = ZEND_DO_FCALL; opline->result.u.var = get_temporary_variable(CG(active_op_array)); - opline->result.op_type = IS_TMP_VAR; + opline->result.op_type = IS_VAR; opline->op1.u.constant.value.str.val = estrndup("shell_exec",sizeof("shell_exec")-1); opline->op1.u.constant.value.str.len = sizeof("shell_exec")-1; INIT_PZVAL(&opline->op1.u.constant);