fixed assert when dumping a string which is locked for writing

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-07-20 14:39:29 +00:00
parent 14ddc4d7eb
commit b903802e08

View File

@ -398,7 +398,11 @@ wxDbgHelpDLL::DumpUDT(PSYMBOL_INFO pSym, void *pVariable, unsigned level)
if ( s == _T("wxString") )
{
wxString *ps = (wxString *)pVariable;
s << _T("(\"") << *ps << _T(")\"");
// take care to use c_str() here as otherwise we might hit an assert in
// wxString code if it is currently locked for writing (i.e. we're
// between GetWriteBuf() and UngetWriteBuf() calls)
s << _T("(\"") << ps->c_str() << _T(")\"");
}
else // any other UDT
#endif // !wxUSE_STL