提交 80d7859f 编写于 作者: R Rich Felker

fix major breakage in iconv, bogus rejecting of dest charsets

上级 77731d0e
......@@ -94,7 +94,7 @@ iconv_t iconv_open(const char *to, const char *from)
if ((t = find_charmap(to))==-1
|| (f = find_charmap(from))==-1
|| (t >= 0320)) {
|| (charmaps[t] >= 0320)) {
errno = EINVAL;
return (iconv_t)-1;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册