mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
handle a erroneous parsing of attributes in case said attribute has been
* parser.c: handle a erroneous parsing of attributes in case said attribute has been redeclared in the DTD with a different type * hash.c: fix the hash scanner to not crash if a first element from the hash list is been removed in the callback Daniel svn path=/trunk/; revision=3669
This commit is contained in:
parent
7e26fb4b10
commit
ac4118d5ca
@ -1,3 +1,11 @@
|
||||
Fri Jan 11 13:22:14 CST 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c: handle a erroneous parsing of attributes in
|
||||
case said attribute has been redeclared in the DTD with a
|
||||
different type
|
||||
* hash.c: fix the hash scanner to not crash if a first element
|
||||
from the hash list is been removed in the callback
|
||||
|
||||
Wed Jan 9 10:15:50 CST 2008 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlwriter.c: fix indentation in xmlTextWriterFullEndElement,
|
||||
|
15
hash.c
15
hash.c
@ -828,7 +828,7 @@ xmlHashScan(xmlHashTablePtr table, xmlHashScanner f, void *data) {
|
||||
*/
|
||||
void
|
||||
xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) {
|
||||
int i;
|
||||
int i, nb;
|
||||
xmlHashEntryPtr iter;
|
||||
xmlHashEntryPtr next;
|
||||
|
||||
@ -844,10 +844,21 @@ xmlHashScanFull(xmlHashTablePtr table, xmlHashScannerFull f, void *data) {
|
||||
iter = &(table->table[i]);
|
||||
while (iter) {
|
||||
next = iter->next;
|
||||
nb = table->nbElems;
|
||||
if ((f != NULL) && (iter->payload != NULL))
|
||||
f(iter->payload, data, iter->name,
|
||||
iter->name2, iter->name3);
|
||||
iter = next;
|
||||
if (nb != table->nbElems) {
|
||||
/* table was modified by the callback, be careful */
|
||||
if (iter == &(table->table[i])) {
|
||||
if (table->table[i].valid == 0)
|
||||
iter = NULL;
|
||||
if (table->table[i].next != next)
|
||||
iter = &(table->table[i]);
|
||||
} else
|
||||
iter = next;
|
||||
} else
|
||||
iter = next;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
49
parser.c
49
parser.c
@ -957,7 +957,7 @@ mem_error:
|
||||
* @fullattr: the attribute fullname
|
||||
* @type: the attribute type
|
||||
*
|
||||
* Register that this attribute is not CDATA
|
||||
* Register this attribute type
|
||||
*/
|
||||
static void
|
||||
xmlAddSpecialAttr(xmlParserCtxtPtr ctxt,
|
||||
@ -971,6 +971,9 @@ xmlAddSpecialAttr(xmlParserCtxtPtr ctxt,
|
||||
goto mem_error;
|
||||
}
|
||||
|
||||
if (xmlHashLookup2(ctxt->attsSpecial, fullname, fullattr) != NULL)
|
||||
return;
|
||||
|
||||
xmlHashAddEntry2(ctxt->attsSpecial, fullname, fullattr,
|
||||
(void *) (long) type);
|
||||
return;
|
||||
@ -980,6 +983,45 @@ mem_error:
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlCleanSpecialAttrCallback:
|
||||
*
|
||||
* Removes CDATA attributes from the special attribute table
|
||||
*/
|
||||
static void
|
||||
xmlCleanSpecialAttrCallback(void *payload, void *data,
|
||||
const xmlChar *fullname, const xmlChar *fullattr,
|
||||
const xmlChar *unused ATTRIBUTE_UNUSED) {
|
||||
xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) data;
|
||||
|
||||
if (((int) payload) == XML_ATTRIBUTE_CDATA) {
|
||||
xmlHashRemoveEntry2(ctxt->attsSpecial, fullname, fullattr, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlCleanSpecialAttr:
|
||||
* @ctxt: an XML parser context
|
||||
*
|
||||
* Trim the list of attributes defined to remove all those of type
|
||||
* CDATA as they are not special. This call should be done when finishing
|
||||
* to parse the DTD and before starting to parse the document root.
|
||||
*/
|
||||
static void
|
||||
xmlCleanSpecialAttr(xmlParserCtxtPtr ctxt)
|
||||
{
|
||||
if (ctxt->attsSpecial == NULL)
|
||||
return;
|
||||
|
||||
xmlHashScanFull(ctxt->attsSpecial, xmlCleanSpecialAttrCallback, ctxt);
|
||||
|
||||
if (xmlHashSize(ctxt->attsSpecial) == 0) {
|
||||
xmlHashFree(ctxt->attsSpecial, NULL);
|
||||
ctxt->attsSpecial = NULL;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* xmlCheckLanguageID:
|
||||
* @lang: pointer to the string value
|
||||
@ -5006,7 +5048,7 @@ xmlParseAttributeListDecl(xmlParserCtxtPtr ctxt) {
|
||||
(def != XML_ATTRIBUTE_REQUIRED)) {
|
||||
xmlAddDefAttrs(ctxt, elemName, attrName, defaultValue);
|
||||
}
|
||||
if ((ctxt->sax2) && (type != XML_ATTRIBUTE_CDATA)) {
|
||||
if (ctxt->sax2) {
|
||||
xmlAddSpecialAttr(ctxt, elemName, attrName, type);
|
||||
}
|
||||
if (defaultValue != NULL)
|
||||
@ -9245,6 +9287,7 @@ xmlParseDocument(xmlParserCtxtPtr ctxt) {
|
||||
ctxt->extSubSystem, ctxt->extSubURI);
|
||||
ctxt->inSubset = 0;
|
||||
|
||||
xmlCleanSpecialAttr(ctxt);
|
||||
|
||||
ctxt->instate = XML_PARSER_PROLOG;
|
||||
xmlParseMisc(ctxt);
|
||||
@ -10208,6 +10251,7 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
||||
ctxt->intSubName, ctxt->extSubSystem,
|
||||
ctxt->extSubURI);
|
||||
ctxt->inSubset = 0;
|
||||
xmlCleanSpecialAttr(ctxt);
|
||||
ctxt->instate = XML_PARSER_PROLOG;
|
||||
#ifdef DEBUG_PUSH
|
||||
xmlGenericError(xmlGenericErrorContext,
|
||||
@ -10435,6 +10479,7 @@ found_end_int_subset:
|
||||
ctxt->sax->externalSubset(ctxt->userData, ctxt->intSubName,
|
||||
ctxt->extSubSystem, ctxt->extSubURI);
|
||||
ctxt->inSubset = 0;
|
||||
xmlCleanSpecialAttr(ctxt);
|
||||
ctxt->instate = XML_PARSER_PROLOG;
|
||||
ctxt->checkIndex = 0;
|
||||
#ifdef DEBUG_PUSH
|
||||
|
Loading…
x
Reference in New Issue
Block a user