hopefully implement va_end properly - may require some fixes or reverts, partial or full

This commit is contained in:
DarthArgus
2015-04-02 20:25:00 -05:00
parent bc33f176c2
commit 1b7d4c6283
15 changed files with 81 additions and 22 deletions
@@ -1554,7 +1554,7 @@ SessionApiClient* ConnectionServer::getSessionApiClient()
// ----------------------------------------------------------------------
void ConnectionServer::setDone(char const *reasonfmt, ...)
void ConnectionServer::setDone(char const reasonfmt, ...)
{
if (!done)
{
@@ -1579,6 +1579,7 @@ void ConnectionServer::setDone(char const *reasonfmt, ...)
reason));
done = true;
va_end(ap);
}
}