mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-22 07:07:35 +08:00
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:
committed by
Lorenz Meier
parent
b845edba64
commit
453937a89a
@@ -336,6 +336,7 @@ void mTecs::debug(const char *fmt, ...)
|
||||
|
||||
va_start(args, fmt);
|
||||
debug_print(fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
} /* namespace fwPosctrl */
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user