DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=27561>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=27561 Exception thrown when root element has no attributes Summary: Exception thrown when root element has no attributes Product: Xerces-C++ Version: 2.5.0 Platform: All OS/Version: All Status: NEW Severity: Critical Priority: Other Component: Non-Validating Parser AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] There is some new code in 2.5.0 that checks whether the root element of an XML document has two namespace declarations. There is a mistake in the code, however, since it throws an exception (index out of range) when the root element has no attributes. The relevant code can be found in wfxmlscanner.cpp at line 1499. I patched it for now by adding an if condition: if (attCount) { ... } around the whole loop. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
