1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

adjusted last change to xmlCompilePathPattern, fixed one compilation

* pattern.c: adjusted last change to xmlCompilePathPattern,
  fixed one compilation warning
This commit is contained in:
William M. Brack 2005-06-14 22:02:59 +00:00
parent 9ca11bfc3d
commit 537f1173c3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Tue Jun 14 15:03:22 PDT 2005 William Brack <wbrack@mmm.com.hk>
* pattern.c: adjusted last change to xmlCompilePathPattern,
fixed one compilation warning
Tue Jun 14 21:19:16 CEST 2005 Kasimier Buchcik <libxml2-cvs@cazic.net>
* pattern.c: Some changes/fixes to the streaming evaluation.

View File

@ -1132,7 +1132,7 @@ error:
static void
xmlCompilePathPattern(xmlPatParserContextPtr ctxt) {
SKIP_BLANKS;
if ((CUR == '/') && (NXT(1) != '/')) {
if (CUR == '/') {
ctxt->comp->flags |= PAT_FROM_ROOT;
} else if ((CUR == '.') || (ctxt->comp->flags & XML_PATTERN_NOTPATTERN)) {
ctxt->comp->flags |= PAT_FROM_CUR;
@ -1584,7 +1584,7 @@ static int
xmlStreamPushInternal(xmlStreamCtxtPtr stream,
const xmlChar *name, const xmlChar *ns,
xmlElementType nodeType) {
int ret = 0, err = 0, tmp, i, m, match, step, desc, final;
int ret = 0, err = 0, final = 0, tmp, i, m, match, step, desc;
xmlStreamCompPtr comp;
#ifdef DEBUG_STREAMING
xmlStreamCtxtPtr orig = stream;