* string.c (rb_str_dup): reverted unneeded change. [ruby-dev:33634]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15397 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-02-07 09:57:06 +00:00
parent 82b088aa0c
commit fb506c3000
2 changed files with 7 additions and 1 deletions

View file

@ -564,7 +564,9 @@ static VALUE rb_str_replace(VALUE, VALUE);
VALUE
rb_str_dup(VALUE str)
{
return rb_str_new3(str);
VALUE dup = str_alloc(rb_obj_class(str));
rb_str_replace(dup, str);
return dup;
}