summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-17 15:56:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-17 15:56:36 +0000
commit3dc070e90e53dfd281acdbaada2871d5eeac4a1a (patch)
tree5661f4f449b952ec26851deddc9e9f5def8f2447 /variable.c
parent7e48040b3aede45041670ba07ec6e9c5eac6ab06 (diff)
* variable.c (rb_path2class): get rid of dangling pointer caused by
optimized out value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/variable.c b/variable.c
index caba124114..3889070782 100644
--- a/variable.c
+++ b/variable.c
@@ -235,11 +235,8 @@ rb_path2class(const char *path)
}
pbeg = p = path;
while (*p) {
- VALUE str;
-
while (*p && *p != ':') p++;
- str = rb_str_new(pbeg, p-pbeg);
- id = rb_intern(RSTRING_PTR(str));
+ id = rb_intern2(pbeg, p-pbeg);
if (p[0] == ':') {
if (p[1] != ':') goto undefined_class;
p += 2;