mirror of https://github.com/AxioDL/tinyxml2.git
fix name parsing to accept additional lead characters
This commit is contained in:
parent
4dbe869cd7
commit
5fbacbec06
10
tinyxml2.cpp
10
tinyxml2.cpp
|
@ -134,16 +134,12 @@ char* StrPair::ParseName( char* p )
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ( !XMLUtil::IsAlpha( *p ) ) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
while( *p && (
|
||||
XMLUtil::IsAlphaNum( (unsigned char) *p )
|
||||
|| *p == '_'
|
||||
|| *p == '-'
|
||||
|| *p == '.'
|
||||
|| *p == ':' ))
|
||||
|| *p == ':'
|
||||
|| (*p == '-' && p>start ) // can be in a name, but not lead it.
|
||||
|| (*p == '.' && p>start ) )) // can be in a name, but not lead it.
|
||||
{
|
||||
++p;
|
||||
}
|
||||
|
|
|
@ -940,6 +940,12 @@ int main( int /*argc*/, const char ** /*argv*/ )
|
|||
XMLTest( "QueryBoolText", boolValue, true, false );
|
||||
}
|
||||
|
||||
{
|
||||
const char* xml = "<element><_sub/><:sub/><sub:sub/><sub-sub/></element>";
|
||||
XMLDocument doc;
|
||||
doc.Parse( xml );
|
||||
XMLTest( "Non-alpha element lead letter parses.", doc.Error(), false );
|
||||
}
|
||||
|
||||
// ----------- Performance tracking --------------
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue