mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* transcode.c (str_transcode0): fix: :xml option doesn't
work on str.encode([options]) form without default_internal. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
db881044bc
commit
69ee4246e5
3 changed files with 9 additions and 3 deletions
|
@ -2457,7 +2457,8 @@ str_transcode0(int argc, VALUE *argv, VALUE *self, int ecflags, VALUE ecopts)
|
|||
if (argc == 0) {
|
||||
arg1 = rb_enc_default_internal();
|
||||
if (NIL_P(arg1)) {
|
||||
return -1;
|
||||
if (!ecflags) return -1;
|
||||
arg1 = rb_obj_encoding(str);
|
||||
}
|
||||
ecflags |= ECONV_INVALID_REPLACE | ECONV_UNDEF_REPLACE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue