summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorksss <[email protected]>2014-06-11 14:42:18 +0000
committerksss <[email protected]>2014-06-11 14:42:18 +0000
commitbd53818999f882e7509c797b7a9be4decef42c81 (patch)
tree1f6ce02cedc0778cf55c47f23fc249d621f217e4 /src
parent63be55c77c98cd77b5e2468719b23f5cedca3df8 (diff)
downloadmruby-bd53818999f882e7509c797b7a9be4decef42c81.tar.gz
mruby-bd53818999f882e7509c797b7a9be4decef42c81.zip
str_replace: self should not be shared and nofree
Diffstat (limited to 'src')
-rw-r--r--src/string.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/string.c b/src/string.c
index 6d2799270..56fdf7b4c 100644
--- a/src/string.c
+++ b/src/string.c
@@ -1368,14 +1368,17 @@ str_replace(mrb_state *mrb, struct RString *s1, struct RString *s2)
long len;
len = RSTR_LEN(s2);
+ if (RSTR_SHARED_P(s1)) {
+ str_decref(mrb, s1->as.heap.aux.shared);
+ }
+ else if (!RSTR_EMBED_P(s1) && !RSTR_NOFREE_P(s1)) {
+ mrb_free(mrb, s1->as.heap.ptr);
+ }
+
+ RSTR_UNSET_NOFREE_FLAG(s1);
+
if (RSTR_SHARED_P(s2)) {
- L_SHARE:
- if (RSTR_SHARED_P(s1)) {
- str_decref(mrb, s1->as.heap.aux.shared);
- }
- else if (!RSTR_EMBED_P(s1) && !RSTR_NOFREE_P(s1)) {
- mrb_free(mrb, s1->as.heap.ptr);
- }
+L_SHARE:
RSTR_UNSET_EMBED_FLAG(s1);
s1->as.heap.ptr = s2->as.heap.ptr;
s1->as.heap.len = len;
@@ -1385,6 +1388,7 @@ str_replace(mrb_state *mrb, struct RString *s1, struct RString *s2)
}
else {
if (len <= RSTRING_EMBED_LEN_MAX) {
+ RSTR_UNSET_SHARED_FLAG(s1);
RSTR_SET_EMBED_FLAG(s1);
memcpy(s1->as.ary, RSTR_PTR(s2), len);
RSTR_SET_EMBED_LEN(s1, len);