diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-29 09:12:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-29 09:12:43 +0000 |
commit | f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe (patch) | |
tree | 04528759f5aadcc812d821419e8f39c7987934f1 /stdio-common | |
parent | fdf19bf72dd4e6b7c48048f2f93938f484599c5d (diff) | |
download | glibc-f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe.tar glibc-f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe.tar.gz glibc-f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe.tar.bz2 glibc-f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe.zip |
Update.
1998-04-29 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c [%S]: Don't clear mbstate twice;
wcsrtombs must put it into initial state.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/vfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index d8d0f87b0f..dcc5cdbdaa 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -887,9 +887,9 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) /* Illegal wide-character string. */ \ return -1; \ \ + assert (__mbsinit (&mbstate)); \ s2 = (const wchar_t *) string; \ string = alloca (len + 1); \ - memset (&mbstate, '\0', sizeof (mbstate_t)); \ (void) __wcsrtombs (string, &s2, prec != -1 ? prec : UINT_MAX, \ &mbstate); \ } \ |