mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Fix ignorableWhitespace callback
If ignorableWhitespace differs from the "characters" callback, we have to check for blanks as well. Regressed with 1f5b537.
This commit is contained in:
parent
d83ff954af
commit
8696ebe182
2
SAX2.c
2
SAX2.c
@ -2736,7 +2736,7 @@ xmlSAXVersion(xmlSAXHandler *hdlr, int version)
|
|||||||
hdlr->reference = xmlSAX2Reference;
|
hdlr->reference = xmlSAX2Reference;
|
||||||
hdlr->characters = xmlSAX2Characters;
|
hdlr->characters = xmlSAX2Characters;
|
||||||
hdlr->cdataBlock = xmlSAX2CDataBlock;
|
hdlr->cdataBlock = xmlSAX2CDataBlock;
|
||||||
hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
|
hdlr->ignorableWhitespace = xmlSAX2Characters;
|
||||||
hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
|
hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
|
||||||
hdlr->comment = xmlSAX2Comment;
|
hdlr->comment = xmlSAX2Comment;
|
||||||
hdlr->warning = xmlParserWarning;
|
hdlr->warning = xmlParserWarning;
|
||||||
|
15
parser.c
15
parser.c
@ -4779,18 +4779,23 @@ static const unsigned char test_char_data[256] = {
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
xmlCharacters(xmlParserCtxtPtr ctxt, const xmlChar *buf, int size) {
|
xmlCharacters(xmlParserCtxtPtr ctxt, const xmlChar *buf, int size) {
|
||||||
|
int checkBlanks;
|
||||||
|
|
||||||
if ((ctxt->sax == NULL) || (ctxt->disableSAX))
|
if ((ctxt->sax == NULL) || (ctxt->disableSAX))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
checkBlanks = (!ctxt->keepBlanks) ||
|
||||||
|
(ctxt->sax->ignorableWhitespace != ctxt->sax->characters);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calling areBlanks with only parts of a text node
|
* Calling areBlanks with only parts of a text node
|
||||||
* is fundamentally broken, making the NOBLANKS option
|
* is fundamentally broken, making the NOBLANKS option
|
||||||
* essentially unusable.
|
* essentially unusable.
|
||||||
*/
|
*/
|
||||||
if ((!ctxt->keepBlanks) &&
|
if ((checkBlanks) &&
|
||||||
(ctxt->sax->ignorableWhitespace != ctxt->sax->characters) &&
|
|
||||||
(areBlanks(ctxt, buf, size, 1))) {
|
(areBlanks(ctxt, buf, size, 1))) {
|
||||||
if (ctxt->sax->ignorableWhitespace != NULL)
|
if ((ctxt->sax->ignorableWhitespace != NULL) &&
|
||||||
|
(ctxt->keepBlanks))
|
||||||
ctxt->sax->ignorableWhitespace(ctxt->userData, buf, size);
|
ctxt->sax->ignorableWhitespace(ctxt->userData, buf, size);
|
||||||
} else {
|
} else {
|
||||||
if (ctxt->sax->characters != NULL)
|
if (ctxt->sax->characters != NULL)
|
||||||
@ -4798,9 +4803,9 @@ xmlCharacters(xmlParserCtxtPtr ctxt, const xmlChar *buf, int size) {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* The old code used to update this value for "complex" data
|
* The old code used to update this value for "complex" data
|
||||||
* even if keepBlanks was true. This was probably a bug.
|
* even if checkBlanks was false. This was probably a bug.
|
||||||
*/
|
*/
|
||||||
if ((!ctxt->keepBlanks) && (*ctxt->space == -1))
|
if ((checkBlanks) && (*ctxt->space == -1))
|
||||||
*ctxt->space = -2;
|
*ctxt->space = -2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user