summaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-02 18:05:02 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-02 18:05:02 +0000
commitbb4dcac3c3a9efcd7c8004da5a582a87bf335b30 (patch)
treeb83875aaf9f38c8c8df880308ea00338dae17c64 /numeric.c
parent15f7bed27f35499a1c04843749cfb0356dd59371 (diff)
downloadruby-bb4dcac3c3a9efcd7c8004da5a582a87bf335b30.tar.gz
ruby-bb4dcac3c3a9efcd7c8004da5a582a87bf335b30.tar.xz
ruby-bb4dcac3c3a9efcd7c8004da5a582a87bf335b30.zip
* numeric.c (flo_to_s): get rid of buffer overflow.
* io.c (appendline): clearerr(3) before raising exception, since exception may be captured by rescue. [ruby-talk:77794] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4290 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index d9278f06b..4ea6114e3 100644
--- a/numeric.c
+++ b/numeric.c
@@ -289,7 +289,7 @@ static VALUE
flo_to_s(flt)
VALUE flt;
{
- char buf[24];
+ char buf[25];
char *fmt = "%.15g";
double value = RFLOAT(flt)->value;
double avalue, d1, d2;