From ac95269b57ff7d6040b121d71732bce4ed8c23d9 Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 18 Dec 2015 08:24:29 +0000 Subject: * 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 --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compile.c') 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; } -- cgit v1.2.3