Got rid of a compiler warning in xmlGetNodePath().

* tree.c: Got rid of a compiler warning in xmlGetNodePath().
This commit is contained in:
Kasimier T. Buchcik 2006-06-12 11:08:18 +00:00
parent d38c63f329
commit 43ceb1ec88
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Mon Jun 12 13:06:03 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
* tree.c: Got rid of a compiler warning in xmlGetNodePath().
Mon Jun 12 12:54:25 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net> Mon Jun 12 12:54:25 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
* tree.c: Fixed xmlGetNodePath() to generate the node test "*" * tree.c: Fixed xmlGetNodePath() to generate the node test "*"

8
tree.c
View File

@ -4295,10 +4295,10 @@ xmlGetNodePath(xmlNodePtr node)
while (tmp != NULL) { while (tmp != NULL) {
if ((tmp->type == XML_ELEMENT_NODE) && if ((tmp->type == XML_ELEMENT_NODE) &&
(generic || (generic ||
(xmlStrEqual(cur->name, tmp->name)) && (xmlStrEqual(cur->name, tmp->name) &&
((tmp->ns == cur->ns) || ((tmp->ns == cur->ns) ||
((tmp->ns != NULL) && (cur->ns != NULL) && ((tmp->ns != NULL) && (cur->ns != NULL) &&
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))) (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
occur++; occur++;
tmp = tmp->prev; tmp = tmp->prev;
} }
@ -4307,10 +4307,10 @@ xmlGetNodePath(xmlNodePtr node)
while (tmp != NULL && occur == 0) { while (tmp != NULL && occur == 0) {
if ((tmp->type == XML_ELEMENT_NODE) && if ((tmp->type == XML_ELEMENT_NODE) &&
(generic || (generic ||
(xmlStrEqual(cur->name, tmp->name)) && (xmlStrEqual(cur->name, tmp->name) &&
((tmp->ns == cur->ns) || ((tmp->ns == cur->ns) ||
((tmp->ns != NULL) && (cur->ns != NULL) && ((tmp->ns != NULL) && (cur->ns != NULL) &&
(xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))) (xmlStrEqual(cur->ns->prefix, tmp->ns->prefix)))))))
occur++; occur++;
tmp = tmp->next; tmp = tmp->next;
} }