0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Add missing va_end() call

This commit is contained in:
Dmitry-Me 2018-08-02 15:57:35 +03:00
parent 9565f9cd0c
commit 440baa3147

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) {