From: Aaron Piotrowski Date: Wed, 29 Jun 2016 14:56:25 +0000 (-0500) Subject: Add missed return replacing bail out X-Git-Tag: php-7.1.0alpha3~25^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4b1bfc0757447b1b53adfb61d15e367e96f6a4d;p=php Add missed return replacing bail out --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index f1c58e2c0f..635643e3f3 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5636,7 +5636,7 @@ ZEND_METHOD(reflection_property, getValue) } if (Z_TYPE(CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) == IS_UNDEF) { zend_throw_error(NULL, "Internal error: Could not find the property %s::%s", ZSTR_VAL(intern->ce->name), ZSTR_VAL(ref->prop.name)); - /* Bails out */ + return; } member_p = &CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]; ZVAL_DEREF(member_p);