Read was not copying back the buffers contents into the string parameter

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 1999-03-09 17:12:05 +00:00
parent 7c26969c48
commit 21d423d3d3

View File

@ -304,6 +304,7 @@ bool wxIniConfig::Read(const wxString& szKey, wxString *pstr) const
return FALSE;
}
else {
*pstr = szBuf ;
return TRUE;
}
}
@ -332,6 +333,7 @@ bool wxIniConfig::Read(const wxString& szKey, wxString *pstr,
return FALSE;
}
else {
*pstr = szBuf ;
return TRUE;
}
}