diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-05-29 01:48:06 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-05-29 01:48:06 +0000 |
commit | 07ebfe1b9c18245d771125096d6654ee06f14c21 (patch) | |
tree | ab9b314dc9e2edd5a771820aeac2cbe20228150c /usr.bin | |
parent | 40701fe3e34fea8f946ae14377ff7b45eb936427 (diff) | |
download | FreeBSD-src-07ebfe1b9c18245d771125096d6654ee06f14c21.zip FreeBSD-src-07ebfe1b9c18245d771125096d6654ee06f14c21.tar.gz |
Make sure that each va_start has one and only one matching va_end,
especially in error cases.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/chat/chat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/chat/chat.c b/usr.bin/chat/chat.c index 056af37..86e6cfb 100644 --- a/usr.bin/chat/chat.c +++ b/usr.bin/chat/chat.c @@ -408,6 +408,7 @@ chat_logf(const char *fmt, ...) va_start(args, fmt); vfmtmsg(line, sizeof(line), fmt, args); + va_end(args); if (to_log) syslog(LOG_INFO, "%s", line); if (to_stderr) @@ -425,6 +426,7 @@ fatal(int code, const char *fmt, ...) va_start(args, fmt); vfmtmsg(line, sizeof(line), fmt, args); + va_end(args); if (to_log) syslog(LOG_ERR, "%s", line); if (to_stderr) |