]> granicus.if.org Git - php/commitdiff
- Fix tiny bug (one of the reasons we can't support __toString() for
authorAndi Gutmans <andi@php.net>
Wed, 17 Mar 2004 16:18:24 +0000 (16:18 +0000)
committerAndi Gutmans <andi@php.net>
Wed, 17 Mar 2004 16:18:24 +0000 (16:18 +0000)
- regular objects).

Zend/zend_execute.c

index c9cebd79be330c516872a5f30f06b716a34f0727..09bdef5c95e952ee85e2d94ff17977e30e21c749 100644 (file)
@@ -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();
 }