diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2019-07-03 05:04:20 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2019-07-03 05:04:20 +0000 |
commit | 15072cebb60cbc96908ba0402ab267f686a9570a (patch) | |
tree | 99d2065dfbcbba8447a4565902c11dedb4b13ad6 /usr.sbin/ntpd | |
parent | 75fca2aa3a35362ecff27f0c3041d3f511b51275 (diff) |
Forgotten va_copy/va_end; on some archs that is really needed. ok benno@
Diffstat (limited to 'usr.sbin/ntpd')
-rw-r--r-- | usr.sbin/ntpd/log.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/log.c b/usr.sbin/ntpd/log.c index 4022d0f827f..56fd38c0985 100644 --- a/usr.sbin/ntpd/log.c +++ b/usr.sbin/ntpd/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.18 2019/06/27 15:18:42 otto Exp $ */ +/* $OpenBSD: log.c,v 1.19 2019/07/03 05:04:19 otto Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -78,7 +78,9 @@ vlog(int pri, const char *fmt, va_list ap) { char *nfmt; int saved_errno = errno; + va_list ap2; + va_copy(ap2, ap); if (dest & LOG_TO_STDERR) { /* best effort in out of mem situations */ if (asprintf(&nfmt, "%s\n", fmt) == -1) { @@ -91,7 +93,8 @@ vlog(int pri, const char *fmt, va_list ap) fflush(stderr); } if (dest & LOG_TO_SYSLOG) - vsyslog(pri, fmt, ap); + vsyslog(pri, fmt, ap2); + va_end(ap2); errno = saved_errno; } |