You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2006/03/21 10:48:05 UTC

svn commit: r387473 - /webservices/axis2/trunk/c/modules/xml/om/om_element.c

Author: samisa
Date: Tue Mar 21 01:48:03 2006
New Revision: 387473

URL: http://svn.apache.org/viewcvs?rev=387473&view=rev
Log:
Fixed the memory leak

Modified:
    webservices/axis2/trunk/c/modules/xml/om/om_element.c

Modified: webservices/axis2/trunk/c/modules/xml/om/om_element.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/om/om_element.c?rev=387473&r1=387472&r2=387473&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/om/om_element.c (original)
+++ webservices/axis2/trunk/c/modules/xml/om/om_element.c Tue Mar 21 01:48:03 2006
@@ -1057,7 +1057,7 @@
     AXIS2_ENV_CHECK(env, NULL);
     AXIS2_PARAM_CHECK((*env)->error, element_node, NULL);
     om_ele_impl = AXIS2_INTF_TO_IMPL(om_element);
-    if(om_ele_impl->children_iter)
+    if(om_ele_impl->children_qname_iter)
     {
         return om_ele_impl->children_qname_iter;
     }