Commit 08629849 authored by captainwong's avatar captainwong

update Log.h VsVer.h

parent 1cfc4e40
......@@ -178,12 +178,12 @@ public:
#else
char output[MAX_OUTPUT_LEN];
if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){
WORD out_len = plog->FormatBuf(m_ansiBuf, output);
plog->Output(output, out_len);
plog->FormatBuf(m_ansiBuf, output);
plog->Output(output);
}else{
char *ansiOut = Utf16ToAnsi(buf);
WORD out_len = plog->FormatBuf(ansiOut, output);
plog->Output(output, out_len);
plog->FormatBuf(ansiOut, output);
plog->Output(output);
SAFEDELETEARR(ansiOut);
}
#endif
......@@ -229,8 +229,8 @@ public:
}
#else
char output[MAX_OUTPUT_LEN];
WORD out_len = plog->FormatBuf(buf, output);
plog->Output(output, out_len);
plog->FormatBuf(buf, output);
plog->Output(output);
#endif
}
}
......@@ -327,7 +327,7 @@ protected:
SAFEDELETEARR(ansiOut);
}
#else
fwrite(buf, 1, buf_len, m_pLogFile);
fwrite(buf, 1, strlen(buf), m_pLogFile);
#endif
fflush(m_pLogFile);
}
......
......@@ -23,6 +23,6 @@
#define _stprintf_s(buff, format, arg1, arg2) _stprintf(buff, format, arg1, arg2)
#define strcat_s(dst, len, src) strcat(dst, src)
#define _countof sizeof
#define memcpy_s(dst, size, src, len) memcpy(dst, src, len)
#endif
/***************************************/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment