diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-29 07:52:55 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-29 07:52:55 +0000 |
| commit | 8719f269f064d9134d193eb7688f510ebadd6ae7 (patch) | |
| tree | 35cc22bf84d65b4ec02bf15cb22df6fab7e1b813 /ext | |
| parent | 52012e4d7c7bbe7b8eb9d4e7263930bf6234f6c1 (diff) | |
| download | ruby-8719f269f064d9134d193eb7688f510ebadd6ae7.tar.gz ruby-8719f269f064d9134d193eb7688f510ebadd6ae7.tar.xz ruby-8719f269f064d9134d193eb7688f510ebadd6ae7.zip | |
* lib/net/smtp.rb (Net::SMTP::send0): add taint check.
* ruby.h (LLONG_MIN): wrong value.
* io.c (rb_f_getc): $stdin may not be IO. [ruby-dev:20973]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/bigdecimal/bigdecimal.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 542f9ab52..d01dbc4f5 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -31,6 +31,7 @@ * */ +#include "ruby.h" #include <ctype.h> #include <stdio.h> #include <stdlib.h> @@ -38,8 +39,6 @@ #include <errno.h> #include <float.h> #include <math.h> -#include "ruby.h" -#include "math.h" #include "version.h" /* #define ENABLE_NUMERIC_STRING */ |
