Printf format checking added to logging function.

Printf format checking added to logging function and all
issues that were revealed by that fixed.
This commit is contained in:
Johan Wikman
2015-11-16 11:38:03 +02:00
parent 44df53d846
commit a355e1beef
26 changed files with 209 additions and 191 deletions

View File

@ -124,11 +124,11 @@ int main(int argc, char** argv)
memset(message + block_size - 1, '\0', 1);
if (interval > 0 && i % interval == 0)
{
err = skygw_log_write_flush(LOGFILE_ERROR, message);
err = skygw_log_write_flush(LOGFILE_ERROR, "%s", message);
}
else
{
err = skygw_log_write(LOGFILE_ERROR, message);
err = skygw_log_write(LOGFILE_ERROR, "%s", message);
}
if (err)
{