Merge pull request #1401 from Dmitry-Me/addMissingVaEnd02

UI: Add missing va_end() call
master
Richard Stanway 2018-08-05 22:15:10 +02:00 committed by GitHub
commit 4e07ac17d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -346,6 +346,7 @@ static void do_log(int log_level, const char *msg, va_list args, void *param)
}
#else
def_log_handler(log_level, msg, args2, nullptr);
va_end(args2);
#endif
if (log_level <= LOG_INFO || log_verbose) {