mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
reset input->base within xmlStopParser removed call to xmlUTF8Strlen from
* parser.c: reset input->base within xmlStopParser * xmlstring.c: removed call to xmlUTF8Strlen from within xmlUTF8Strpos (Bill Moseley pointed out it was not useful)
This commit is contained in:
parent
e4d526fe48
commit
230c5504d1
@ -1,3 +1,10 @@
|
||||
Mon Dec 20 08:02:57 PST 2004 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* parser.c: reset input->base within xmlStopParser
|
||||
* xmlstring.c: removed call to xmlUTF8Strlen from within
|
||||
xmlUTF8Strpos (Bill Moseley pointed out it was not
|
||||
useful)
|
||||
|
||||
Fri Dec 17 16:03:41 PST 2004 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* valid.c: changed xmlErrValidWarning to use ctxt->warning
|
||||
|
4
parser.c
4
parser.c
@ -9921,8 +9921,10 @@ xmlStopParser(xmlParserCtxtPtr ctxt) {
|
||||
return;
|
||||
ctxt->instate = XML_PARSER_EOF;
|
||||
ctxt->disableSAX = 1;
|
||||
if (ctxt->input != NULL)
|
||||
if (ctxt->input != NULL) {
|
||||
ctxt->input->cur = BAD_CAST"";
|
||||
ctxt->input->base = ctxt->input->cur;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -884,7 +884,7 @@ xmlUTF8Strpos(const xmlChar *utf, int pos) {
|
||||
xmlChar ch;
|
||||
|
||||
if (utf == NULL) return(NULL);
|
||||
if ( (pos < 0) || (pos >= xmlUTF8Strlen(utf)) )
|
||||
if (pos < 0)
|
||||
return(NULL);
|
||||
while (pos--) {
|
||||
if ((ch=*utf++) == 0) return(NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user