We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c29bb commit 4cd481fCopy full SHA for 4cd481f
util.c
@@ -2062,7 +2062,7 @@ ruby_strtod(const char *s00, char **se)
2062
for (; c >= '0' && c <= '9'; c = *++s) {
2063
have_dig:
2064
nz++;
2065
- if (nf > DBL_DIG * 2) continue;
+ if (nf > DBL_DIG * 4) continue;
2066
if (c -= '0') {
2067
nf += nz;
2068
for (i = 1; i < nz; i++)
version.h
@@ -1,5 +1,5 @@
1
#define RUBY_VERSION "1.9.3"
2
-#define RUBY_PATCHLEVEL 483
+#define RUBY_PATCHLEVEL 484
3
4
#define RUBY_RELEASE_DATE "2013-11-22"
5
#define RUBY_RELEASE_YEAR 2013
0 commit comments