mirror of
git://git.musl-libc.org/musl
synced 2025-02-01 19:41:41 +00:00
fix major breakage in iconv, bogus rejecting of dest charsets
This commit is contained in:
parent
77731d0ec1
commit
80d7859f32
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user