We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f86ca commit 5ddcacaCopy full SHA for 5ddcaca
ext/opcache/ZendAccelerator.c
@@ -3873,10 +3873,13 @@ static void preload_check_windows_restrictions(zend_class_entry *scope) {
3873
static inline int preload_update_class_constants(zend_class_entry *ce) {
3874
/* This is a separate function to work around what appears to be a bug in GCC
3875
* maybe-uninitialized analysis. */
3876
+ int result;
3877
zend_try {
- return zend_update_class_constants(ce);
3878
+ result = zend_update_class_constants(ce);
3879
+ } zend_catch {
3880
+ result = FAILURE;
3881
} zend_end_try();
- return FAILURE;
3882
+ return result;
3883
}
3884
3885
static zend_class_entry *preload_load_prop_type(zend_property_info *prop, zend_string *name) {
0 commit comments