mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
error, error_at_line: Add missing va_end calls
(cherry picked from commit b7b52b9dec
)
This commit is contained in:
parent
4b25485f03
commit
d05b05d157
@ -1,3 +1,8 @@
|
||||
2018-08-13 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
* misc/error.c (error): Add missing va_end call.
|
||||
(error_at_line): Likewise.
|
||||
|
||||
2018-08-10 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
[BZ #23497]
|
||||
|
@ -319,6 +319,7 @@ error (int status, int errnum, const char *message, ...)
|
||||
|
||||
va_start (args, message);
|
||||
error_tail (status, errnum, message, args);
|
||||
va_end (args);
|
||||
|
||||
#ifdef _LIBC
|
||||
_IO_funlockfile (stderr);
|
||||
@ -390,6 +391,7 @@ error_at_line (int status, int errnum, const char *file_name,
|
||||
|
||||
va_start (args, message);
|
||||
error_tail (status, errnum, message, args);
|
||||
va_end (args);
|
||||
|
||||
#ifdef _LIBC
|
||||
_IO_funlockfile (stderr);
|
||||
|
Loading…
Reference in New Issue
Block a user