diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-01 16:42:30 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-01-01 16:42:30 +0100 |
commit | 349a28646163b0e1433fad450edbac8215fc5b32 (patch) | |
tree | 73d324c8aedc4c3ab41083ba6ede99b1d3c0936a /ext/reflection/php_reflection.c | |
parent | 9099dbd9614b37b48818ac24e2020b0d756b7e1e (diff) | |
download | php-git-349a28646163b0e1433fad450edbac8215fc5b32.tar.gz |
Use RETURN_THROWS() after zend_throw_error()
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 61a0de16d6..ad98bc6321 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -96,7 +96,7 @@ PHPAPI zend_class_entry *reflection_reference_ptr; return; \ } \ zend_throw_error(NULL, "Internal error: Failed to retrieve the reflection object"); \ - return; \ + RETURN_THROWS(); \ } \ } while (0) |