mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
New buffer for shared string
* string.c (rb_str_init): allocate new buffer if the string is shared. [Bug #15937]
This commit is contained in:
parent
148f50fc78
commit
8797f48373
2 changed files with 14 additions and 0 deletions
9
string.c
9
string.c
|
@ -1615,6 +1615,15 @@ rb_str_init(int argc, VALUE *argv, VALUE str)
|
||||||
char *new_ptr = ALLOC_N(char, (size_t)capa + termlen);
|
char *new_ptr = ALLOC_N(char, (size_t)capa + termlen);
|
||||||
memcpy(new_ptr, RSTRING(str)->as.ary, RSTRING_EMBED_LEN_MAX + 1);
|
memcpy(new_ptr, RSTRING(str)->as.ary, RSTRING_EMBED_LEN_MAX + 1);
|
||||||
RSTRING(str)->as.heap.ptr = new_ptr;
|
RSTRING(str)->as.heap.ptr = new_ptr;
|
||||||
|
}
|
||||||
|
else if (FL_TEST(str, STR_SHARED|STR_NOFREE)) {
|
||||||
|
const size_t size = (size_t)capa + termlen;
|
||||||
|
const char *const old_ptr = RSTRING_PTR(str);
|
||||||
|
const size_t osize = RSTRING(str)->as.heap.len + TERM_LEN(str);
|
||||||
|
char *new_ptr = ALLOC_N(char, (size_t)capa + termlen);
|
||||||
|
memcpy(new_ptr, old_ptr, osize < size ? osize : size);
|
||||||
|
FL_UNSET_RAW(str, STR_SHARED);
|
||||||
|
RSTRING(str)->as.heap.ptr = new_ptr;
|
||||||
}
|
}
|
||||||
else if (STR_HEAP_SIZE(str) != (size_t)capa + termlen) {
|
else if (STR_HEAP_SIZE(str) != (size_t)capa + termlen) {
|
||||||
SIZED_REALLOC_N(RSTRING(str)->as.heap.ptr, char,
|
SIZED_REALLOC_N(RSTRING(str)->as.heap.ptr, char,
|
||||||
|
|
|
@ -79,6 +79,11 @@ class TestString < Test::Unit::TestCase
|
||||||
assert_equal("mystring", str.__send__(:initialize, str, capacity: 1000))
|
assert_equal("mystring", str.__send__(:initialize, str, capacity: 1000))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_initialize_shared
|
||||||
|
String.new(str = "mystring" * 10).__send__(:initialize, capacity: str.bytesize)
|
||||||
|
assert_equal("mystring", str[0, 8])
|
||||||
|
end
|
||||||
|
|
||||||
def test_initialize_nonstring
|
def test_initialize_nonstring
|
||||||
assert_raise(TypeError) {
|
assert_raise(TypeError) {
|
||||||
S(1)
|
S(1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue