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 da...@apache.org on 2006/02/07 05:04:58 UTC

svn commit: r375471 - /webservices/axis2/trunk/c/modules/core/deployment/module_builder.c

Author: damitha
Date: Mon Feb  6 20:04:31 2006
New Revision: 375471

URL: http://svn.apache.org/viewcvs?rev=375471&view=rev
Log:
more seg fault fix

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/module_builder.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/module_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/module_builder.c?rev=375471&r1=375470&r2=375471&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/module_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/module_builder.c Mon Feb  6 20:04:31 2006
@@ -168,6 +168,7 @@
     axis2_om_node_t *out_fault_flow_node = NULL;
     struct axis2_conf *parent = NULL;
     axis2_array_list_t *ops = NULL;
+    axis2_param_container_t *parent_container = NULL;
     int size = 0;
     int i = 0;
     
@@ -270,8 +271,10 @@
         AXIS2_QNAME_FREE(qparamst, env);
 
     parent = AXIS2_MODULE_DESC_GET_PARENT(builder_impl->module, env);
+    if(parent)
+        parent_container = parent->param_container;
     AXIS2_DESC_BUILDER_PROCESS_PARAMS(module_builder->desc_builder, env,
-        itr, builder_impl->module->params, parent->param_container);
+        itr, builder_impl->module->params, parent_container);
 
     /* process INFLOW */
     qinflowst = axis2_qname_create(env, AXIS2_INFLOWST, NULL, NULL);