Skip to content

Commit 4cd481f

Browse files
committed
merge revision(s) 43780:
* util.c (ruby_strtod): BigMath requires more precision. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@43782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 60c29bb commit 4cd481f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2062,7 +2062,7 @@ ruby_strtod(const char *s00, char **se)
20622062
for (; c >= '0' && c <= '9'; c = *++s) {
20632063
have_dig:
20642064
nz++;
2065-
if (nf > DBL_DIG * 2) continue;
2065+
if (nf > DBL_DIG * 4) continue;
20662066
if (c -= '0') {
20672067
nf += nz;
20682068
for (i = 1; i < nz; i++)

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define RUBY_VERSION "1.9.3"
2-
#define RUBY_PATCHLEVEL 483
2+
#define RUBY_PATCHLEVEL 484
33

44
#define RUBY_RELEASE_DATE "2013-11-22"
55
#define RUBY_RELEASE_YEAR 2013

0 commit comments

Comments
 (0)