va_copy is not available on Windows.

This commit is contained in:
Ghislain MARY 2015-03-13 10:43:40 +01:00
parent 1ee545b722
commit 333ac018a0

View file

@ -190,10 +190,16 @@ static void linphone_core_log_collection_handler(OrtpLogLevel level, const char
struct stat statbuf;
if (liblinphone_log_func != NULL) {
#ifndef WIN32
va_list args_copy;
va_copy(args_copy, args);
liblinphone_log_func(level, fmt, args_copy);
va_end(args_copy);
#else
/* This works on 32 bits, luckily. */
/* TODO: va_copy is available in Visual Studio 2013. */
liblinphone_log_func(level, fmt, args);
#endif
}
ortp_gettimeofday(&tp, NULL);