From: Ulrich Drepper Date: Thu, 29 Oct 1998 20:36:52 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_0_100~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8334b9a912e860953b2835738dc89244c80027f;p=thirdparty%2Fglibc.git Update. (printf_unknown): Add label all_done. --- diff --git a/ChangeLog b/ChangeLog index 5881ea09394..8af856431a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * stdio-common/vfprintf.c (vfprintf): Fix the remaining premature returns without cleaning up the lock. + (printf_unknown): Add label all_done. * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Keep Linux 2.0 kernels in mind when reading /proc/self/fd/FD. diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index fdf5102846f..bc005f9f324 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -1587,6 +1587,7 @@ printf_unknown (FILE *s, const struct printf_info *info, if (info->spec != '\0') outchar (info->spec); + all_done: return done; }