mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
Fix for bug #920274.
This commit is contained in:
parent
8e56c54876
commit
149774b6ec
1 changed files with 3 additions and 2 deletions
|
@ -2958,7 +2958,8 @@ addBinding(XML_Parser parser, PREFIX *prefix, const ATTRIBUTE_ID *attId,
|
|||
prefix->binding = b;
|
||||
b->nextTagBinding = *bindingsPtr;
|
||||
*bindingsPtr = b;
|
||||
if (startNamespaceDeclHandler)
|
||||
/* if attId == NULL then we are not starting a namespace scope */
|
||||
if (attId && startNamespaceDeclHandler)
|
||||
startNamespaceDeclHandler(handlerArg, prefix->name,
|
||||
prefix->binding ? uri : 0);
|
||||
return XML_ERROR_NONE;
|
||||
|
@ -5368,7 +5369,7 @@ setContext(XML_Parser parser, const XML_Char *context)
|
|||
return XML_FALSE;
|
||||
if (!poolAppendChar(&tempPool, XML_T('\0')))
|
||||
return XML_FALSE;
|
||||
if (addBinding(parser, prefix, 0, poolStart(&tempPool),
|
||||
if (addBinding(parser, prefix, NULL, poolStart(&tempPool),
|
||||
&inheritedBindings) != XML_ERROR_NONE)
|
||||
return XML_FALSE;
|
||||
poolDiscard(&tempPool);
|
||||
|
|
Loading…
Add table
Reference in a new issue