1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Additional experimental fix for r35261.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-04-08 19:17:32 +00:00
parent a4d3990f25
commit e0ba59b708
3 changed files with 3 additions and 3 deletions

View file

@ -92,9 +92,9 @@ static void fbuffer_append_str(FBuffer *fb, VALUE str)
const char *newstr = StringValuePtr(str);
unsigned long len = RSTRING_LEN(str);
RB_GC_GUARD(str);
fbuffer_append(fb, newstr, len);
RB_GC_GUARD(str);
}
static void fbuffer_append_char(FBuffer *fb, char newchr)