From e4b1bfc0757447b1b53adfb61d15e367e96f6a4d Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Wed, 29 Jun 2016 09:56:25 -0500 Subject: [PATCH] Add missed return replacing bail out --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0