* iconvdata/euc-jp.c: In conversion to UCS4, handling invalid
	sequences with first by 0x8e correctly.
This commit is contained in:
Ulrich Drepper 2000-06-28 18:11:30 +00:00
parent 044ff6223a
commit 392ac96984
3 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2000-06-28 Ulrich Drepper <drepper@redhat.com>
* iconvdata/euc-jp.c: In conversion to UCS4, handling invalid
sequences with first by 0x8e correctly.
* iconvdata/jis0208.h: Remove redundant test.
2000-06-27 Ulrich Drepper <drepper@redhat.com>

View File

@ -96,6 +96,16 @@
{ \
/* This is code set 2: half-width katakana. */ \
ch = jisx0201_to_ucs4 (ch2); \
if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
{ \
/* Illegal character. */ \
if (! ignore_errors_p ()) \
{ \
/* This is an illegal character. */ \
result = __GCONV_ILLEGAL_INPUT; \
break; \
} \
\
inptr += 2; \
} \
else \

View File

@ -1,5 +1,8 @@
2000-06-28 Ulrich Drepper <drepper@redhat.com>
* locales/iso14651_t1: Explicitly add control character in
U0000-U001F and U007F-U009F range for backward compatibility.
* locales/i18n: Correct problems found by test suite.
2000-06-28 Andreas Jaeger <aj@suse.de>