git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59928
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
// a white space in the format string matches 0 or more white
// spaces in the input
{
// a white space in the format string matches 0 or more white
// spaces in the input
- while ( wxIsspace(*input) )
+ while ( input != end && wxIsspace(*input) )
{
// any other character (not whitespace, not '%') must be
// matched by itself in the input
{
// any other character (not whitespace, not '%') must be
// matched by itself in the input
- if ( *input++ != *fmt )
+ if ( input == end || *input++ != *fmt )
{
// no match
return false;
{
// no match
return false;