From: Dmitry Stogov Date: Wed, 28 Oct 2015 05:42:55 +0000 (+0300) Subject: Removed incorrect "return" statement X-Git-Tag: php-7.1.0alpha2~40^2~36^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b009f84ec0feb3e9b2d93f9cff3304c8acb0bf4c;p=php Removed incorrect "return" statement --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 0f31182beb..cdcc01a038 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -2212,7 +2212,6 @@ static void zend_compile_class_ref_ex(znode *result, zend_ast *name_ast, uint32_ zend_ensure_valid_class_fetch_type(fetch_type); result->op_type = IS_UNUSED; result->u.op.num = fetch_type | fetch_flags; - return 0; } } /* }}} */