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

* transcode.c (str_transcode): initialize transcoder in

rb_transcoding.  [ruby-dev:33234]

* transcode_data.h (rb_transcoding): transcoder constified.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15152 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-01-21 05:32:12 +00:00
parent 91625011c2
commit f5eb90f3c2
3 changed files with 10 additions and 1 deletions

View file

@ -311,6 +311,8 @@ str_transcode(int argc, VALUE *argv, VALUE *self)
return -1;
}
my_transcoding.transcoder = my_transcoder;
while (!final_encoding) { /* loop for multistep transcoding */
/* later, maybe use smaller intermediate strings for very long strings */
if (!(my_transcoder = transcode_dispatch(from_e, to_e))) {