git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34894
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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