1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* error.c (builtin_type_name): don't return pointer to the buffer of

temporary String object.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-12-15 14:19:59 +00:00
parent 73768d54d3
commit d95ce7fc03
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Thu Dec 15 23:16:13 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* error.c (builtin_type_name): don't return pointer to the buffer of
temporary String object.
Thu Dec 15 17:56:58 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* io.c (argf_type): make typed data.

View file

@ -392,9 +392,11 @@ builtin_type_name(VALUE x)
else if (SYMBOL_P(x)) {
etype = "Symbol";
}
else if (rb_special_const_p(x)) {
x = rb_obj_as_string(x);
etype = StringValuePtr(x);
else if (RB_TYPE_P(x, T_TRUE)) {
etype = "true";
}
else if (RB_TYPE_P(x, T_FALSE)) {
etype = "false";
}
else {
etype = rb_obj_classname(x);