mirror of
https://github.com/php/php-src.git
synced 2024-12-14 12:26:19 +08:00
Fixes test #50
This commit is contained in:
parent
79d524dc1e
commit
790b0b9edf
@ -382,6 +382,9 @@ void php_filter_float(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
|
||||
Z_DVAL_P(value) = lval;
|
||||
break;
|
||||
case IS_DOUBLE:
|
||||
if ((!dval && p - num > 1 && strpbrk(num, "123456789")) || !zend_finite(dval)) {
|
||||
goto error;
|
||||
}
|
||||
zval_dtor(value);
|
||||
Z_TYPE_P(value) = IS_DOUBLE;
|
||||
Z_DVAL_P(value) = dval;
|
||||
|
Loading…
Reference in New Issue
Block a user