summaryrefslogtreecommitdiffstats
path: root/sprintf.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-04 11:46:44 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-04 11:46:44 +0000
commiteda54e6d4751d78f1343884932f10811df404a45 (patch)
treeaef0672833fa7ffa9be3163f246195446ba5b88e /sprintf.c
parent6e6fe267722f0f51e8a5d01145e8d6c0513753fe (diff)
downloadruby-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
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sprintf.c b/sprintf.c
index 953ce5054..4c5e56843 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -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;