* libc/locale/locale.c (loadlocale): Set mbc_max to 3 for EUCJP.

This commit is contained in:
Corinna Vinschen 2009-04-06 10:36:49 +00:00
parent 115655f1f3
commit 2f1769f431
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-04-06 Corinna Vinschen <corinna@vinschen.de>
* libc/locale/locale.c (loadlocale): Set mbc_max to 3 for EUCJP.
2009-04-04 Corinna Vinschen <corinna@vinschen.de>
* libc/stdlib/wcstombs.c: Fix datatypes in documentation.

View File

@ -468,7 +468,7 @@ loadlocale(struct _reent *p, int category)
if (!strcmp (charset, "EUCJP") || !strcmp (charset, "eucJP"))
{
strcpy (charset, "EUCJP");
mbc_max = 2;
mbc_max = 3;
#ifdef _MB_CAPABLE
l_wctomb = __eucjp_wctomb;
l_mbtowc = __eucjp_mbtowc;