使用するperlアプリを実行していました/opt/local/lib/perl5/5.12.4/darwin-thread-multi-2level/Encode.pm
エラーを発行します
/opt/local/lib/perl5/5.12.4/darwin-thread-multi-2level/Encode.pm 行 174 で、ワイド文字を含む文字列をデコードできません。
Encode.pm
読み取りの 174 行目
sub decode($$;$) {
my ( $name, $octets, $check ) = @_;
return undef unless defined $octets;
$octets .= '' if ref $octets;
$check ||= 0;
my $enc = find_encoding($name);
unless ( defined $enc ) {
require Carp;
Carp::croak("Unknown encoding '$name'");
}
my $string = $enc->decode( $octets, $check ); # line 174
$_[1] = $octets if $check and !ref $check and !( $check & LEAVE_SRC() );
return $string;
}
回避策はありますか?