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:
William M. Brack 2004-12-20 16:18:49 +00:00
parent e4d526fe48
commit 230c5504d1
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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;
}
}
/**

View File

@ -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);