Detect parsing error earlier when looking at end of tag

This commit is contained in:
Dmitry-Me 2015-04-10 15:42:54 +03:00
parent 9f24acd369
commit ccd267a782
1 changed files with 5 additions and 5 deletions

View File

@ -1539,15 +1539,15 @@ char* XMLElement::ParseAttributes( char* p )
prevAttribute = attrib;
}
// end of the tag
else if ( *p == '/' && *(p+1) == '>' ) {
_closingType = CLOSED;
return p+2; // done; sealed element.
}
// end of the tag
else if ( *p == '>' ) {
++p;
break;
}
// end of the tag
else if ( *p == '/' && *(p+1) == '>' ) {
_closingType = CLOSED;
return p+2; // done; sealed element.
}
else {
_document->SetError( XML_ERROR_PARSING_ELEMENT, start, p );
return 0;