From 80d7859f32c11826c24490cac8a8be48f737cee0 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 21 Apr 2012 14:46:40 -0400 Subject: fix major breakage in iconv, bogus rejecting of dest charsets --- src/locale/iconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/locale') 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; } -- cgit v1.2.1