We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 56d1ffc + 4c8dabf commit d837199Copy full SHA for d837199
1 file changed
Zend/zend_operators.h
@@ -147,6 +147,7 @@ static zend_always_inline zend_long zend_dval_to_lval_silent(double d)
147
/* Used to convert a string float to integer during an (int) cast */
148
static zend_always_inline zend_long zend_dval_to_lval_cap(double d)
149
{
150
+ ZEND_IGNORE_VALUE(s);
151
if (UNEXPECTED(!zend_finite(d))) {
152
return 0;
153
} else if (!ZEND_DOUBLE_FITS_LONG(d)) {
0 commit comments