summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-20 10:29:29 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-20 10:29:29 +0000
commit959077c8e0ec27dfa72025a85c99a4acc26f6491 (patch)
treece1af07efa76fa68b4dc3e92863e58a5e7142130 /eval.c
parent3a90c86316142c7463b16a0ac1548f9a13541fcb (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/eval.c b/eval.c
index facb7438ff..9236df78e0 100644
--- a/eval.c
+++ b/eval.c
@@ -6682,7 +6682,7 @@ search_required(fname, featurep, path)
char *ext, *ftptr;
int type;
- *featurep = fname;
+ *featurep = fname = rb_str_new4(fname);
*path = 0;
ext = strrchr(ftptr = RSTRING(fname)->ptr, '.');
if (ext && !strchr(ext, '/')) {
@@ -6786,10 +6786,6 @@ rb_require_safe(fname, safe)
/* partial state */
ftptr = ruby_strdup(RSTRING(feature)->ptr);
st_insert(loading_tbl, (st_data_t)ftptr, (st_data_t)curr_thread);
- if (feature == fname && !OBJ_FROZEN(feature)) {
- feature = rb_str_dup(feature);
- OBJ_FREEZE(feature);
- }
rb_load(path, 0);
break;