Fix va_arg calls (always call va_end)

From the manpage: "Each invocation of va_start() must be matched by a
corresponding invocation of va_end() in the same function."
This commit is contained in:
Peter Duerr
2017-08-07 11:42:43 +02:00
committed by Lorenz Meier
parent b845edba64
commit 453937a89a
4 changed files with 12 additions and 3 deletions
@@ -336,6 +336,7 @@ void mTecs::debug(const char *fmt, ...)
va_start(args, fmt);
debug_print(fmt, args);
va_end(args);
}
} /* namespace fwPosctrl */
+9 -3
View File
@@ -102,7 +102,9 @@ err(int exitcode, const char *fmt, ...)
va_list args;
va_start(args, fmt);
verr(exitcode, fmt, args);
warnerr_core(errno, fmt, args);
va_end(args);
exit(exitcode);
}
void
@@ -118,7 +120,9 @@ errc(int exitcode, int errcode, const char *fmt, ...)
va_list args;
va_start(args, fmt);
verrc(exitcode, errcode, fmt, args);
warnerr_core(errcode, fmt, args);
va_end(args);
exit(exitcode);
}
void
@@ -134,7 +138,9 @@ errx(int exitcode, const char *fmt, ...)
va_list args;
va_start(args, fmt);
verrx(exitcode, fmt, args);
warnerr_core(NOCODE, fmt, args);
va_end(args);
exit(exitcode);
}
void