From a5334a6807f9ee2b321c78483a0519e82aa667aa Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 19 Jan 2000 06:49:51 +0000 Subject: [PATCH] Update. * wcsmbs/mbsrtowcs.c: Compute return value correctly after change in gconv function. --- ChangeLog | 3 +++ localedata/ChangeLog | 4 ++++ localedata/locales/ja_JP | 4 +++- wcsmbs/mbsrtowcs.c | 14 ++++++++++---- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b14b44ebf4..1fe0314e24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-01-18 Ulrich Drepper + * wcsmbs/mbsrtowcs.c: Compute return value correctly after change + in gconv function. + * wcsmbs/mbrtowc.c: Don't set errno if byte sequence is only incomplete but correct. diff --git a/localedata/ChangeLog b/localedata/ChangeLog index 637bba7f12..2433c38c6a 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,7 @@ +2000-01-18 Ulrich Drepper + + * locales/ja_JP: Add double-width digits to digit class. + 2000-01-12 Ulrich Drepper * charmaps/ISO-8859-16: Add mapping for /xba. diff --git a/localedata/locales/ja_JP b/localedata/locales/ja_JP index a7dbe82229..c5185cc04a 100644 --- a/localedata/locales/ja_JP +++ b/localedata/locales/ja_JP @@ -60,7 +60,9 @@ alpha ;;;;;;;;;;;;;/ .... digit ;;;;;/ - ;;;; + ;;;;;/ + ;;;;;/ + ;;;; xdigit ;;;;;/ ;;;;;/ diff --git a/wcsmbs/mbsrtowcs.c b/wcsmbs/mbsrtowcs.c index f69247ff85..7c55fec213 100644 --- a/wcsmbs/mbsrtowcs.c +++ b/wcsmbs/mbsrtowcs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. @@ -42,9 +42,10 @@ __mbsrtowcs (dst, src, len, ps) mbstate_t *ps; { struct __gconv_step_data data; - size_t result = 0; + size_t result; int status; struct __gconv_step *towc; + size_t non_reversible; /* Tell where we want the result. */ data.__invocation_counter = 0; @@ -65,13 +66,16 @@ __mbsrtowcs (dst, src, len, ps) const unsigned char *inbuf = (const unsigned char *) *src; const unsigned char *srcend = inbuf + strlen (inbuf) + 1; + result = 0; data.__outbufend = (char *) buf + sizeof (buf); do { data.__outbuf = (char *) buf; status = (*towc->__fct) (__wcsmbs_gconv_fcts.towc, &data, &inbuf, - srcend, &result, 0); + srcend, &non_reversible, 0); + + result += (wchar_t *) data.__outbuf - buf; } while (status == __GCONV_FULL_OUTPUT); @@ -99,7 +103,9 @@ __mbsrtowcs (dst, src, len, ps) status = (*towc->__fct) (__wcsmbs_gconv_fcts.towc, &data, (const unsigned char **) src, srcend, - &result, 0); + &non_reversible, 0); + + result = (wchar_t *) data.__outbuf - dst; /* We have to determine whether the last character converted is the NUL character. */ -- 2.43.5