Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2017-02-05 02:01:12 +00:00
commit 7bccc82284

2
log.c
View File

@ -133,6 +133,7 @@ fatal(const char *msg, ...)
if (asprintf(&fmt, "fatal: %s: %s", msg, strerror(errno)) == -1) if (asprintf(&fmt, "fatal: %s: %s", msg, strerror(errno)) == -1)
exit(1); exit(1);
log_vwrite(fmt, ap); log_vwrite(fmt, ap);
va_end(ap);
exit(1); exit(1);
} }
@ -147,5 +148,6 @@ fatalx(const char *msg, ...)
if (asprintf(&fmt, "fatal: %s", msg) == -1) if (asprintf(&fmt, "fatal: %s", msg) == -1)
exit(1); exit(1);
log_vwrite(fmt, ap); log_vwrite(fmt, ap);
va_end(ap);
exit(1); exit(1);
} }