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 2007/02/02 12:51:12 UTC

svn commit: r502584 - /webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c

Author: damitha
Date: Fri Feb  2 03:51:10 2007
New Revision: 502584

URL: http://svn.apache.org/viewvc?view=rev&rev=502584
Log:
In process_params methods null check is done for parent parameter which
cause premature exit of the method when parent is NULL(which is possible).
Fixed this

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

Modified: webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c?view=diff&rev=502584&r1=502583&r2=502584
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c Fri Feb  2 03:51:10 2007
@@ -821,7 +821,7 @@
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, params, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, param_container, AXIS2_FAILURE);
-    AXIS2_PARAM_CHECK(env->error, parent, AXIS2_FAILURE);
+    /*AXIS2_PARAM_CHECK(env->error, parent, AXIS2_FAILURE);*/
 
     while (AXIS2_FALSE != AXIOM_CHILDREN_QNAME_ITERATOR_HAS_NEXT(params, env))
     {



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org