You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2009/10/11 14:49:20 UTC

svn commit: r824063 - /webservices/axis2/trunk/c/src/core/deployment/conf_builder.c

Author: damitha
Date: Sun Oct 11 12:49:19 2009
New Revision: 824063

URL: http://svn.apache.org/viewvc?rev=824063&view=rev
Log:
In this method axiom_element instance is used without allocating/initialising

Modified:
    webservices/axis2/trunk/c/src/core/deployment/conf_builder.c

Modified: webservices/axis2/trunk/c/src/core/deployment/conf_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/deployment/conf_builder.c?rev=824063&r1=824062&r2=824063&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/deployment/conf_builder.c (original)
+++ webservices/axis2/trunk/c/src/core/deployment/conf_builder.c Sun Oct 11 12:49:19 2009
@@ -411,6 +411,7 @@
 
         found_disp = AXIS2_TRUE;
         disp_node = (axiom_node_t *)axiom_children_qname_iterator_next(disps, env);
+        disp_element = (axiom_element_t *) axiom_node_get_data_element(disp_node, env);
         class_qname = axutil_qname_create(env, AXIS2_CLASSNAME, NULL, NULL);
         disp_att = axiom_element_get_attribute(disp_element, env, class_qname);
         axutil_qname_free(class_qname, env);