summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 9944b5f4b1..670e7adc12 100644
--- a/hash.c
+++ b/hash.c
@@ -1262,7 +1262,9 @@ static int
hash_aset_str(st_data_t *key, st_data_t *val, struct update_arg *arg, int existing)
{
if (!existing) {
- *key = rb_str_new_frozen((VALUE)*key);
+ VALUE str = (VALUE)*key;
+ if (!OBJ_FROZEN(str))
+ *key = rb_fstring((VALUE)*key);
}
return hash_aset(key, val, arg, existing);
}