diff options
Diffstat (limited to 'src/locale/iconv.c')
-rw-r--r-- | src/locale/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/iconv.c b/src/locale/iconv.c index a7d4fd9f..30a457f3 100644 --- a/src/locale/iconv.c +++ b/src/locale/iconv.c @@ -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; } |