fix major breakage in iconv, bogus rejecting of dest charsets

This commit is contained in:
Rich Felker 2012-04-21 14:46:40 -04:00
parent 77731d0ec1
commit 80d7859f32

View File

@ -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;
}