From 007b5c46a8036e752b91f77110a956d984411743 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 21 Jun 2003 12:27:21 +0000 Subject: * object.c (rb_to_id): use rb_str_intern() instead of rb_intern() directly, for sanity check. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ object.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1ca0936c5..26efe7edd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jun 21 21:27:18 2003 Nobuyoshi Nakada + + * object.c (rb_to_id): use rb_str_intern() instead of rb_intern() + directly, for sanity check. + Sat Jun 21 13:56:09 2003 Takaaki Uematsu * wince/Makefile.sub: undefine HAVE__SETJMP. diff --git a/object.c b/object.c index a559f12f1..1e7c5c1d4 100644 --- a/object.c +++ b/object.c @@ -788,7 +788,7 @@ rb_to_id(name) switch (TYPE(name)) { case T_STRING: - return rb_intern(RSTRING(name)->ptr); + return rb_str_intern(name); case T_FIXNUM: rb_warn("do not use Fixnums as Symbols"); id = FIX2LONG(name); @@ -802,7 +802,7 @@ rb_to_id(name) default: tmp = rb_check_string_type(name); if (!NIL_P(tmp)) { - return rb_intern(RSTRING(tmp)->ptr); + return rb_str_intern(tmp); } rb_raise(rb_eTypeError, "%s is not a symbol", RSTRING(rb_inspect(name))->ptr); } -- cgit