Skip to content

Commit 255aac7

Browse files
committed
Fix compiler error in zend ini scaner
1 parent 8f88311 commit 255aac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_ini_scanner.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ static inline int convert_to_number(zval *retval, const char *str, const int str
158158
zend_long lval;
159159
double dval;
160160

161-
if ((type = is_numeric_string_ex(str, str_len, &lval, &dval, 0, &overflow)) != 0) {
161+
if ((type = is_numeric_string_ex(str, str_len, &lval, &dval, 0, &overflow, NULL)) != 0) {
162162
if (type == IS_LONG) {
163163
ZVAL_LONG(retval, lval);
164164
return SUCCESS;

0 commit comments

Comments
 (0)