corrected "of by 1" error in wxString::insert()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-06-26 15:39:01 +00:00
parent 604a178390
commit 68919656bb

View File

@ -896,7 +896,7 @@ wxString& wxString::insert(size_t nPos, const wxString& str)
wxASSERT( nPos <= Len() );
wxString strTmp;
char *pc = strTmp.GetWriteBuf(Len() + str.Len() + 1);
char *pc = strTmp.GetWriteBuf(Len() + str.Len());
strncpy(pc, c_str(), nPos);
strcpy(pc + nPos, str);
strcpy(pc + nPos + str.Len(), c_str() + nPos);