diff options
author | nagachika <[email protected]> | 2022-04-12 20:08:08 +0900 |
---|---|---|
committer | nagachika <[email protected]> | 2022-04-12 20:48:55 +0900 |
commit | 3fa771ddedac25560be57f4055f1767e6c810f58 (patch) | |
tree | 5c2d9df8a1a2fdb3ff38f878308757d96cd88746 | |
parent | 052ec6d2585c3ace95671013d336f5543624ef3d (diff) |
Fix dtoa buffer overrunv3_0_4
-rw-r--r-- | missing/dtoa.c | 3 | ||||
-rw-r--r-- | test/ruby/test_float.rb | 18 | ||||
-rw-r--r-- | version.h | 2 |
3 files changed, 21 insertions, 2 deletions
diff --git a/missing/dtoa.c b/missing/dtoa.c index a940eabd91..b7a8302875 100644 --- a/missing/dtoa.c +++ b/missing/dtoa.c @@ -1552,6 +1552,7 @@ break2: if (!*++s || !(s1 = strchr(hexdigit, *s))) goto ret0; if (*s == '0') { while (*++s == '0'); + if (!*s) goto ret; s1 = strchr(hexdigit, *s); } if (s1 != NULL) { @@ -1574,7 +1575,7 @@ break2: for (; *s && (s1 = strchr(hexdigit, *s)); ++s) { adj += aadj * ((s1 - hexdigit) & 15); if ((aadj /= 16) == 0.0) { - while (strchr(hexdigit, *++s)); + while (*++s && strchr(hexdigit, *s)); break; } } diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb index fbf0d87f8e..b218b72db5 100644 --- a/test/ruby/test_float.rb +++ b/test/ruby/test_float.rb @@ -171,6 +171,24 @@ class TestFloat < Test::Unit::TestCase assert_raise(ArgumentError, n += z + "A") {Float(n)} assert_raise(ArgumentError, n += z + ".0") {Float(n)} end + + x = nil + 2000.times do + x = Float("0x"+"0"*30) + break unless x == 0.0 + end + assert_equal(0.0, x, ->{"%a" % x}) + x = nil + 2000.times do + begin + x = Float("0x1."+"0"*270) + rescue ArgumentError => e + raise unless /"0x1\.0{270}"/ =~ e.message + else + break + end + end + assert_nil(x, ->{"%a" % x}) end def test_divmod @@ -12,7 +12,7 @@ # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR #define RUBY_VERSION_TEENY 4 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR -#define RUBY_PATCHLEVEL 207 +#define RUBY_PATCHLEVEL 208 #define RUBY_RELEASE_YEAR 2022 #define RUBY_RELEASE_MONTH 4 |