From: Christoph M. Becker Date: Fri, 1 Jan 2021 16:40:25 +0000 (+0100) Subject: Fix build X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2fba0ef6222c81b60993b634d1d83588ca2a60b;p=php Fix build We cannot `RETURN_THROWS()` here, since `return_value` is not defined. --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index f7ec9f748c..4debb4c7e6 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -390,7 +390,7 @@ static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char _class_const_string(str, ZSTR_VAL(key), c, ZSTR_VAL(sub_indent)); if (UNEXPECTED(EG(exception))) { zend_string_release(sub_indent); - RETURN_THROWS(); + return; } } ZEND_HASH_FOREACH_END(); }