summaryrefslogtreecommitdiff
path: root/tree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-03-06 17:35:40 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-03-06 17:35:40 +0000
commit1e77438da7dd912885effa97b1079867d1e041be (patch)
tree5a4ad136a79edcb62bcee8610c7308cf9c9cf771 /tree.c
parentddffd2a789ef4017cc2c779b01e06c7b1c30400d (diff)
downloadlibxml2-1e77438da7dd912885effa97b1079867d1e041be.tar.gz
fix bug #72490 added methods serialize() and saveTo() to all node
* tree.c: fix bug #72490 * python/libxml.c python/libxml.py: added methods serialize() and saveTo() to all node elements. Daniel
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index c9a4bfb5..3bd3456a 100644
--- a/tree.c
+++ b/tree.c
@@ -4718,7 +4718,8 @@ xmlReconciliateNs(xmlDocPtr doc, xmlNodePtr tree) {
/* exit condition */
if (node == tree)
node = NULL;
- }
+ } else
+ break;
}
return(ret);
}