diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-04 11:46:44 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-04 11:46:44 +0000 |
| commit | eda54e6d4751d78f1343884932f10811df404a45 (patch) | |
| tree | aef0672833fa7ffa9be3163f246195446ba5b88e | |
| parent | 6e6fe267722f0f51e8a5d01145e8d6c0513753fe (diff) | |
| download | ruby-eda54e6d4751d78f1343884932f10811df404a45.tar.gz ruby-eda54e6d4751d78f1343884932f10811df404a45.tar.xz ruby-eda54e6d4751d78f1343884932f10811df404a45.zip | |
* sprintf.c (rb_str_format): a bug in %c type check.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | sprintf.c | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -14,6 +14,10 @@ Fri Aug 4 13:56:51 2006 Nobuyoshi Nakada <nobu@ruby-lang.org> * pack.c (pack_pack): check argument overrun for 'P'. based on a patch by rucila <rucila at yahoo.cojp>. fixed: [ruby-dev:29182] +Fri Aug 4 02:42:29 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * sprintf.c (rb_str_format): a bug in %c type check. + Fri Aug 4 01:28:19 2006 Tanaka Akira <akr@fsij.org> * io.c (io_reopen): STDERR.reopen(File.open("/dev/null", "w")) should @@ -399,13 +399,15 @@ rb_str_format(int argc, const VALUE *argv, VALUE fmt) case 'c': { VALUE val = GETARG(); + VALUE tmp; char c; - if (rb_check_string_type(val)) { - if (RSTRING(val)->len != 1) { + tmp = rb_check_string_type(val); + if (!NIL_P(tmp)) { + if (RSTRING(tmp)->len != 1) { rb_raise(rb_eArgError, "%%c requires a character"); } - c = RSTRING(val)->ptr[0]; + c = RSTRING(tmp)->ptr[0]; } else { c = NUM2INT(val) & 0xff; |
