From: Stanislav Malyshev Date: Mon, 24 Feb 2003 13:35:47 +0000 (+0000) Subject: fix exception handling X-Git-Tag: RELEASE_0_5~788 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cf20f86db0eb02a0e3eda75582db2101d441737;p=php fix exception handling --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 9512fb47d4..0e0136ca49 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1173,8 +1173,8 @@ void do_fetch_class(znode *result, znode *namespace_name, znode *class_name TSRM opline->op1 = *namespace_name; } else { SET_UNUSED(opline->op1); - CG(catch_begin) = fetch_class_op_number; } + CG(catch_begin) = fetch_class_op_number; if(class_name) { zend_str_tolower(class_name->u.constant.value.str.val, class_name->u.constant.value.str.len); }