aboutsummaryrefslogtreecommitdiffstats
path: root/compile.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-18 08:24:29 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-18 08:24:29 +0000
commit9d30ef596c3b6830cbb19bf00dd8072f43c3014d (patch)
tree1eabb557fe49dad38b8c57f1dae2a628f6d3fe69 /compile.c
parent66cfd1310cdd7bafb1d72afa42ce302b94700dd5 (diff)
downloadruby-9d30ef596c3b6830cbb19bf00dd8072f43c3014d.tar.gz
* compile.c (ibf_load_object_string): use fstring if frozen string.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53191 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index f858fbb681..ed6f9686cf 100644
--- a/compile.c
+++ b/compile.c
@@ -7650,7 +7650,7 @@ ibf_load_object_string(const struct ibf_load *load, const struct ibf_object_head
rb_enc_associate_index(str, encindex);
if (header->internal) rb_obj_hide(str);
- if (header->frozen) rb_obj_freeze(str);
+ if (header->frozen) str = rb_fstring(str);
return str;
}