You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation of FDP methods `consume_integer()` and
`consume_integers()` have used type `int` for passed arguments in
aforementioned functions. This leads to integer overflow.
Fixes#29
The implementation of FDP methods `consume_number()` and
`consume_numbers()` are used type `double` for arguments of
aforementioned functions. The Lua type `lua_Number` can be not a
`double` and it is defined compile-time. The patch replaces
`double` with `lua_Number` to avoid overflows.
Follows up #29
Version: 59877a2
The text was updated successfully, but these errors were encountered: