Converting uninitialized data is not a Good Idea

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12582 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2001-11-22 09:09:17 +00:00
parent f40b54b1e0
commit 9298c435cf

View File

@ -136,6 +136,7 @@ bool wxTextFile::OnRead(wxMBConv& conv)
AddLine(str, wxTextFileType_Mac);
chLast = ch;
#if wxUSE_UNICODE
conv_mbBuf[0] = ch;
if (conv.MB2WC(conv_wcBuf, conv_mbBuf, 2) == (size_t)-1)
conv_wcBuf[0] = ch;
str = conv_wcBuf[0];
@ -146,6 +147,7 @@ bool wxTextFile::OnRead(wxMBConv& conv)
else {
// add to the current line
#if wxUSE_UNICODE
conv_mbBuf[0] = ch;
if (conv.MB2WC(conv_wcBuf, conv_mbBuf, 2) == (size_t)-1)
conv_wcBuf[0] = ch;
str += conv_wcBuf[0];