* string.c (rb_str_sub_bang): fill wchar terminator.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-12-10 12:09:49 +00:00
Родитель 9d17096309
Коммит 117438ee7b
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -4158,7 +4158,7 @@ rb_str_sub_bang(int argc, VALUE *argv, VALUE str)
memcpy(p + beg0, rp, rlen);
len += rlen - plen;
STR_SET_LEN(str, len);
RSTRING_PTR(str)[len] = '\0';
TERM_FILL(&RSTRING_PTR(str)[len], TERM_LEN(str));
ENC_CODERANGE_SET(str, cr);
if (tainted) OBJ_TAINT(str);

Просмотреть файл

@ -60,6 +60,10 @@ class Test_StringCStr < Test::Unit::TestCase
assert_wchars_term_char("a"*30) {|s| s[29,1] = ""}
end
def test_wchar_sub!
assert_wchars_term_char("foobar") {|s| s.sub!(/#{"foo".encode(s.encoding)}/, "")}
end
def assert_wchars_term_char(str)
result = {}
WCHARS.map do |enc|