From 36044b07730033911580501cbe1a060e820e927e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 4 Aug 2010 10:37:05 +0000 Subject: [PATCH] * string.c (rb_str_set_len): rb_str_modify cannot work before the length is set, which is a precondition for rb_str_modify. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ string.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ce180ebc3f..94ad482142 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 4 19:37:00 2010 Nobuyoshi Nakada + + * string.c (rb_str_set_len): rb_str_modify cannot work before the + length is set, which is a precondition for rb_str_modify. + Wed Aug 4 16:09:43 2010 Nobuyoshi Nakada * string.c (rb_str_resize): should copy the content properly. a diff --git a/string.c b/string.c index 6d8b606c11..decc9d7f04 100644 --- a/string.c +++ b/string.c @@ -1692,7 +1692,7 @@ rb_str_unlocktmp(VALUE str) void rb_str_set_len(VALUE str, long len) { - rb_str_modify(str); + str_modifiable(str); STR_SET_LEN(str, len); RSTRING_PTR(str)[len] = '\0'; }