mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
- parser.c: Sullivan and Darin found a parser bug,
applied the patch. Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
|
* parser.c: Sullivan and Darin found a parser bug,
|
||||||
|
applied the patch.
|
||||||
|
|
||||||
Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||||
|
|
||||||
* HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
|
* HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
|
||||||
|
4
parser.c
4
parser.c
@ -6307,7 +6307,7 @@ xmlParseContent(xmlParserCtxtPtr ctxt) {
|
|||||||
((RAW != '<') || (NXT(1) != '/'))) {
|
((RAW != '<') || (NXT(1) != '/'))) {
|
||||||
const xmlChar *test = CUR_PTR;
|
const xmlChar *test = CUR_PTR;
|
||||||
int cons = ctxt->input->consumed;
|
int cons = ctxt->input->consumed;
|
||||||
xmlChar tok = ctxt->token;
|
int tok = ctxt->token;
|
||||||
const xmlChar *cur = ctxt->input->cur;
|
const xmlChar *cur = ctxt->input->cur;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -7926,7 +7926,7 @@ xmlParseTryOrFinish(xmlParserCtxtPtr ctxt, int terminate) {
|
|||||||
case XML_PARSER_CONTENT: {
|
case XML_PARSER_CONTENT: {
|
||||||
const xmlChar *test;
|
const xmlChar *test;
|
||||||
int cons;
|
int cons;
|
||||||
xmlChar tok;
|
int tok;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Handle preparsed entities and charRef
|
* Handle preparsed entities and charRef
|
||||||
|
Reference in New Issue
Block a user