Skip to content

Commit b2fba0e

Browse files
committed
Fix build
We cannot `RETURN_THROWS()` here, since `return_value` is not defined.
1 parent b23c865 commit b2fba0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/reflection/php_reflection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char
390390
_class_const_string(str, ZSTR_VAL(key), c, ZSTR_VAL(sub_indent));
391391
if (UNEXPECTED(EG(exception))) {
392392
zend_string_release(sub_indent);
393-
RETURN_THROWS();
393+
return;
394394
}
395395
} ZEND_HASH_FOREACH_END();
396396
}

0 commit comments

Comments
 (0)