From: Andi Gutmans Date: Wed, 17 Mar 2004 16:18:24 +0000 (+0000) Subject: - Fix tiny bug (one of the reasons we can't support __toString() for X-Git-Tag: php-5.0.0RC1RC2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5569ad0626e84f21799154dedd4c274141a30991;p=php - Fix tiny bug (one of the reasons we can't support __toString() for - regular objects). --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index c9cebd79be..09bdef5c95 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -1904,7 +1904,7 @@ int zend_echo_handler(ZEND_OPCODE_HANDLER_ARGS) zend_print_variable(z); } - FREE_OP(EX(Ts), &opline->op1, EG(free_op1)); + FREE_OP(EX(Ts), &opline->op1, free_op1); NEXT_OPCODE(); }