From f326a706f8ef9f539bf44312ef8c6c5baa2a0ebe Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 29 Apr 1998 09:12:43 +0000 Subject: [PATCH] Update. 1998-04-29 Ulrich Drepper * stdio-common/vfprintf.c [%S]: Don't clear mbstate twice; wcsrtombs must put it into initial state. --- ChangeLog | 5 +++++ localedata/ChangeLog | 5 +++++ stdio-common/vfprintf.c | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8e8926022c..76eaca06ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-04-29 Ulrich Drepper + + * stdio-common/vfprintf.c [%S]: Don't clear mbstate twice; + wcsrtombs must put it into initial state. + 1998-04-29 Andreas Schwab * iconv/gconv_simple.c: Fix endian bug. Don't put side effects in diff --git a/localedata/ChangeLog b/localedata/ChangeLog index fe9b664a15..2dc4aa7a50 100644 --- a/localedata/ChangeLog +++ b/localedata/ChangeLog @@ -1,3 +1,8 @@ +1998-04-28 Ulrich Drepper + + * locales/de_DE: Use . as thousands separator and 3;3 groups for + LC_NUMERIC. + 1998-03-30 Ulrich Drepper * Makefile: Fix test rules from last patch. 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); \ } \