From 534e22131667759be0cc610d52438a3a79dfe65a Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 25 Mar 2012 13:29:07 +0000 Subject: Fixed the Log altogether (doesn't use NULL-to-va_list assignment, compiles for RaspberryPi) git-svn-id: http://mc-server.googlecode.com/svn/trunk@432 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cLog.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'source/cLog.cpp') diff --git a/source/cLog.cpp b/source/cLog.cpp index f8d1c731b..cf8448d8b 100644 --- a/source/cLog.cpp +++ b/source/cLog.cpp @@ -98,15 +98,7 @@ void cLog::ClearLog() void cLog::Log(const char * a_Format, va_list argList) { AString Message; - if (argList != NULL) - { - AppendVPrintf(Message, a_Format, argList); - } - else - { - // This branch needs to be here because of *nix crashing in vsnprintf() when argList is NULL - Message.assign(a_Format); - } + AppendVPrintf(Message, a_Format, argList); time_t rawtime; time ( &rawtime ); -- cgit v1.2.3