Kaydet (Commit) 30a8fbbf authored tarafından Michael Meeks's avatar Michael Meeks

fastparser: special case xmlns more sensibly.

üst d7280af9
......@@ -949,6 +949,10 @@ void FastSaxParser::callbackStartElement( const XML_Char* pwName, const XML_Char
{
assert(awAttributes[i+1]);
if( awAttributes[i][0] != 'x' ||
strncmp( awAttributes[i], "xmlns") != 0 )
continue;
splitName( awAttributes[i], pPrefix, nPrefixLen, pName, nNameLen );
if( nPrefixLen )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment