mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #4811 from shuujii/clear-MRB_STR_SHARED-flag-in-mrb_str_modify_keep_ascii
Clear `MRB_STR_SHARED` flag in `mrb_str_modify_keep_ascii`; close #4807
This commit is contained in:
@@ -820,6 +820,7 @@ mrb_str_modify_keep_ascii(mrb_state *mrb, struct RString *s)
|
||||
if (shared->refcnt == 1 && s->as.heap.ptr == shared->ptr) {
|
||||
s->as.heap.aux.capa = shared->capa;
|
||||
s->as.heap.ptr[s->as.heap.len] = '\0';
|
||||
RSTR_UNSET_SHARED_FLAG(s);
|
||||
mrb_free(mrb, shared);
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user