Fixed leak in Logger

This commit is contained in:
Ben Gräf 2018-04-22 07:04:07 +02:00 committed by GitHub
parent f0039013b5
commit dc6bcacaed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,6 +64,8 @@ void Log::message(Log::Level level, const char* fmt, ...)
va_end(copy);
}
va_end(args);
uv_mutex_unlock(&m_mutex);
}