git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49039
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxASSERT_MSG( nStart <= lenOld,
_T("index out of bounds in wxStringImpl::replace") );
size_t nEnd = nStart + nLen;
wxASSERT_MSG( nStart <= lenOld,
_T("index out of bounds in wxStringImpl::replace") );
size_t nEnd = nStart + nLen;
+ if ( nLen > lenOld - nStart )
{
// nLen may be out of range, as it can be npos, just clump it down
nLen = lenOld - nStart;
{
// nLen may be out of range, as it can be npos, just clump it down
nLen = lenOld - nStart;