ruby/missing
Nobuyoshi Nakada 624538ba92
dtoa.c: Check integer underflow
Reported at https://hackerone.com/reports/3288162

This underflow does not occur in Ruby because:

* This function is `static` and not accessible other than from ruby
  internal.

* Ruby uses mode 0 when calling this function directly.

* For `%f` in vsnprintf.c using mode 3, this parameter comes from the
  precision, but negative precision is meaningless and ignored.
2025-09-10 16:45:25 +09:00
..
2025-09-10 16:45:25 +09:00