From c77efe114476e3fd5a1d66cba12ad65c7a1bf40e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 10 Dec 2014 07:48:48 +0000 Subject: string.c: term fill * string.c (rb_str_chomp_bang): fill wchar terminator. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string.c') diff --git a/string.c b/string.c index bb50e5a902..a0e413a267 100644 --- a/string.c +++ b/string.c @@ -7188,7 +7188,7 @@ rb_str_chomp_bang(int argc, VALUE *argv, VALUE str) len = chompped_length(str, rs); if (len < olen) { STR_SET_LEN(str, len); - RSTRING_PTR(str)[len] = '\0'; + TERM_FILL(&RSTRING_PTR(str)[len], TERM_LEN(str)); if (ENC_CODERANGE(str) != ENC_CODERANGE_7BIT) { ENC_CODERANGE_CLEAR(str); } -- cgit v1.2.3