From 8cae03c973a74f21d6d5a69d89498bfd781d3572 Mon Sep 17 00:00:00 2001 From: shankar Date: Tue, 6 Apr 2010 04:29:40 +0000 Subject: Fixing invalid error loggings git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@931009 13f79535-47bb-0310-9956-ffa450edef68 --- axiom/src/om/om_node.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'axiom/src/om/om_node.c') diff --git a/axiom/src/om/om_node.c b/axiom/src/om/om_node.c index 50aac77..d32949c 100644 --- a/axiom/src/om/om_node.c +++ b/axiom/src/om/om_node.c @@ -1139,8 +1139,16 @@ axiom_node_get_next_sibling( return NULL; } - while(!(om_node->next_sibling) && om_node->parent && om_node->builder - && !(axiom_node_is_complete(om_node->parent, env))) + /* we have to build the tree using stax builder if + * (1) om_node's next_sibling is not given (if available, we can just return that) + * (2) om_node is having a parent (otherwise, no concept of sibling) + * (3) om_node is having a stax builder (otherwise, it is a programatically built node) + * (4) parent is having a stax builder (otherwise, om_node is the only child, + * or sibling is programatically created) + * (5) parent is not yet fully built + */ + while((!om_node->next_sibling) && om_node->parent && om_node->parent->builder + && om_node->builder && (!axiom_node_is_complete(om_node->parent, env))) { token = axiom_stax_builder_next_with_token(om_node->builder, env); if(token == -1) -- cgit v1.1-32-gdbae