From 356b3480232d1a8f689c6c275e45c2a4c68efb30 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 28 Mar 2013 10:38:37 -0700 Subject: [PATCH] Never call syslog in __libc_message. --- ChangeLog | 5 +++++ sysdeps/posix/libc_fatal.c | 9 --------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 183bedf..f21bf51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-03-28 Roland McGrath + + * sysdeps/posix/libc_fatal.c: Don't include . + (__libc_message): Never call vsyslog. + 2013-03-28 Alan Modra * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc): diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c index afa1b81..5071df1 100644 --- a/sysdeps/posix/libc_fatal.c +++ b/sysdeps/posix/libc_fatal.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include @@ -68,11 +67,9 @@ void __libc_message (int do_abort, const char *fmt, ...) { va_list ap; - va_list ap_copy; int fd = -1; va_start (ap, fmt); - va_copy (ap_copy, ap); #ifdef FATAL_PREPARE FATAL_PREPARE; @@ -170,12 +167,6 @@ __libc_message (int do_abort, const char *fmt, ...) va_end (ap); - /* If we had no success writing the message, use syslog. */ - if (! written) - vsyslog (LOG_ERR, fmt, ap_copy); - - va_end (ap_copy); - if (do_abort) { BEFORE_ABORT (do_abort, written, fd); -- 2.7.4