From: Sara Golemon Date: Thu, 29 Jul 2004 16:49:59 +0000 (+0000) Subject: &tmp and label are the same thing, don't free it till we're done with it. X-Git-Tag: PRE_ZEND_VM_DISPATCH_PATCH~315 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37acb31c1a6260cd15b4d7af0ee56d726f2ca26a;p=php &tmp and label are the same thing, don't free it till we're done with it. --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 0b756ee402..0e0c7484c3 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -4085,8 +4085,8 @@ int zend_goto_handler(ZEND_OPCODE_HANDLER_ARGS) return 0; } - zval_dtor(&tmp); zend_error(E_ERROR, "Unknown label %s", Z_STRVAL_P(label)); + zval_dtor(&tmp); NEXT_OPCODE(); }