diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 21:46:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 21:46:28 +0000 |
commit | f1f1b6b95a3d2dee0d69eeb0ab606d3c3c0a4b5e (patch) | |
tree | 3262ef2e7d22ef3628d78787465beadca9946a72 /wcsmbs/wcrtomb.c | |
parent | 777e222ddbdffe54b5e344ac1cb40a6ab9ef621f (diff) | |
download | glibc-f1f1b6b95a3d2dee0d69eeb0ab606d3c3c0a4b5e.zip glibc-f1f1b6b95a3d2dee0d69eeb0ab606d3c3c0a4b5e.tar.gz glibc-f1f1b6b95a3d2dee0d69eeb0ab606d3c3c0a4b5e.tar.bz2 |
Update.
* wcsmbs/mbrtowc.c: Set flush to 1 for conversion function calls
depending on whether the input string is empty or not.
* wcsmbs/mbrtowc.c: Calling function without input means clearing the
given state and not avoiding this by modifying a local object.
* wcsmbs/wcrtomb.c: Likewise.
* iconv/skeleton.c: If no EMIT_SHIFT_TO_INIT is defined clear state
object since some incomplete characters might be in there.
Diffstat (limited to 'wcsmbs/wcrtomb.c')
-rw-r--r-- | wcsmbs/wcrtomb.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/wcsmbs/wcrtomb.c b/wcsmbs/wcrtomb.c index ec75e57..ad0e0a9 100644 --- a/wcsmbs/wcrtomb.c +++ b/wcsmbs/wcrtomb.c @@ -37,7 +37,6 @@ static mbstate_t state; size_t __wcrtomb (char *s, wchar_t wc, mbstate_t *ps) { - mbstate_t temp_state; char buf[MB_CUR_MAX]; struct __gconv_step_data data; int status; @@ -57,8 +56,6 @@ __wcrtomb (char *s, wchar_t wc, mbstate_t *ps) { s = buf; wc = L'\0'; - temp_state = *data.__statep; - data.__statep = &temp_state; } /* Tell where we want to have the result. */ |