git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53802
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( len )
{
buf.extend(len);
- const int len2 = m_pfnGetConsoleCommandHistory(buf.data(), len, CMD_EXE);
+
+ int len2 = m_pfnGetConsoleCommandHistory(buf.data(), len, CMD_EXE);
+
+#if !wxUSE_UNICODE
+ // there seems to be a bug in the GetConsoleCommandHistoryA(), it
+ // returns the length of Unicode string and not ANSI one
+ len2 /= 2;
+#endif // !wxUSE_UNICODE
+
if ( len2 != len )
{
wxFAIL_MSG( _T("failed getting history?") );