error, error_at_line: Add missing va_end calls

(cherry picked from commit b7b52b9dec)
This commit is contained in:
Florian Weimer 2018-08-13 14:28:07 +02:00
parent 4b25485f03
commit d05b05d157
2 changed files with 7 additions and 0 deletions

View File

@ -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]

View File

@ -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);