From 7888313d3c00975b1f5a0b8e624b85c1b520b134 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 15 Jul 2000 06:14:56 +0000 Subject: Update. 2000-07-14 Ulrich Drepper * iconv/loop.c (STANDARD_ERR_HANDLER): If one of the transliteration function did its job, continue, don't stop. * iconvdata/iso646.c: Little optimizations in body for conversion from UCS4. --- iconv/loop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iconv/loop.c') diff --git a/iconv/loop.c b/iconv/loop.c index b8e798682e..9d168d84e9 100644 --- a/iconv/loop.c +++ b/iconv/loop.c @@ -190,9 +190,9 @@ if (result != __GCONV_ILLEGAL_INPUT) \ break; \ } \ - /* If any of them recognized the input stop. */ \ + /* If any of them recognized the input continue with the loop. */ \ if (result != __GCONV_ILLEGAL_INPUT) \ - break; \ + continue; \ \ /* Next see whether we have to ignore the error. If not, stop. */ \ if (! ignore_errors_p ()) \ -- cgit v1.2.3