mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
Eliminated useless check in FAST_ZPP (this also fixed few wrong -Wmaybe-uninitialized compilation warnings) (Remi)
This commit is contained in:
parent
f378b9a998
commit
b3d053b036
@ -1010,7 +1010,8 @@ ZEND_API void ZEND_FASTCALL zend_wrong_callback_error(int severity, int num, cha
|
||||
Z_PARAM_PROLOGUE(separate); \
|
||||
zend_parse_arg_zval_deref(_arg, &dest, check_null); \
|
||||
} else { \
|
||||
if (UNEXPECTED(++_i >_num_args)) break; \
|
||||
++_i; \
|
||||
if (_optional && UNEXPECTED(_i >_num_args)) break; \
|
||||
_real_arg++; \
|
||||
zend_parse_arg_zval(_real_arg, &dest, check_null); \
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user