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 sa...@apache.org on 2007/03/27 10:39:44 UTC

svn commit: r522810 [2/2] - in /webservices/axis2/trunk/c: include/ modules/core/addr/ modules/core/clientapi/ modules/core/context/ modules/core/deployment/ modules/core/description/ modules/core/engine/ modules/core/phaseresolver/ modules/core/receiv...

Modified: webservices/axis2/trunk/c/modules/core/deployment/module_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/module_builder.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/module_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/module_builder.c Tue Mar 27 01:39:39 2007
@@ -77,11 +77,11 @@
     return module_builder;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_module_builder_free(axis2_module_builder_t *module_builder,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (module_builder->desc_builder)
     {
@@ -93,7 +93,7 @@
         AXIS2_FREE(env->allocator, module_builder);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/phases_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/phases_info.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/phases_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/phases_info.c Tue Mar 27 01:39:39 2007
@@ -57,11 +57,11 @@
     return phases_info;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_phases_info_free(axis2_phases_info_t *phases_info,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (phases_info->in_phases)
     {
@@ -160,7 +160,7 @@
         AXIS2_FREE(env->allocator, phases_info);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/repos_listener.c Tue Mar 27 01:39:39 2007
@@ -109,11 +109,11 @@
     return repos_listener;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_repos_listener_free(axis2_repos_listener_t *repos_listener,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (repos_listener->folder_name)
     {
@@ -127,7 +127,7 @@
 
     AXIS2_FREE(env->allocator, repos_listener);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/svc_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/svc_builder.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/svc_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/svc_builder.c Tue Mar 27 01:39:39 2007
@@ -109,12 +109,12 @@
     return svc_builder;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_svc_builder_free(axis2_svc_builder_t *svc_builder,
     const axis2_env_t *env)
 {
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (svc_builder->desc_builder)
     {
@@ -128,7 +128,7 @@
         AXIS2_FREE(env->allocator, svc_builder);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/svc_grp_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/svc_grp_builder.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/svc_grp_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/svc_grp_builder.c Tue Mar 27 01:39:39 2007
@@ -71,11 +71,11 @@
     return svc_grp_builder;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_svc_grp_builder_free(axis2_svc_grp_builder_t *svc_grp_builder,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (svc_grp_builder->desc_builder)
     {
@@ -87,7 +87,7 @@
         AXIS2_FREE(env->allocator, svc_grp_builder);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/ws_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/ws_info.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/ws_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/ws_info.c Tue Mar 27 01:39:39 2007
@@ -88,11 +88,11 @@
     return ws_info;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_ws_info_free(axis2_ws_info_t *ws_info,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (ws_info->file_name)
     {
@@ -104,7 +104,7 @@
         AXIS2_FREE(env->allocator, ws_info);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_char_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/deployment/ws_info_list.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/ws_info_list.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/ws_info_list.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/ws_info_list.c Tue Mar 27 01:39:39 2007
@@ -79,11 +79,11 @@
     return ws_info_list;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_ws_info_list_free(axis2_ws_info_list_t *ws_info_list,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (ws_info_list->current_info_lists)
     {
@@ -124,7 +124,7 @@
         AXIS2_FREE(env->allocator, ws_info_list);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/desc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/desc.c Tue Mar 27 01:39:39 2007
@@ -65,11 +65,11 @@
     return desc;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_desc_free(axis2_desc_t *desc,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (desc->children)
     {
@@ -100,7 +100,7 @@
         AXIS2_FREE(env->allocator, desc);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/flow.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/flow.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/flow.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/flow.c Tue Mar 27 01:39:39 2007
@@ -50,11 +50,11 @@
     return flow;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_flow_free(axis2_flow_t *flow,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (flow->list)
     {
@@ -78,18 +78,19 @@
         AXIS2_FREE(env->allocator, flow);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_flow_free_void_arg(void *flow,
     const axis2_env_t *env)
 {
     axis2_flow_t *flow_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     flow_l = (axis2_flow_t *) flow;
-    return axis2_flow_free(flow_l, env);
+    axis2_flow_free(flow_l, env);
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/flow_container.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/flow_container.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/flow_container.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/flow_container.c Tue Mar 27 01:39:39 2007
@@ -51,11 +51,11 @@
     return flow_container;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_flow_container_free(axis2_flow_container_t *flow_container,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (flow_container->in)
     {
@@ -82,7 +82,7 @@
         AXIS2_FREE(env->allocator, flow_container);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_flow_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/handler_desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/handler_desc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/handler_desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/handler_desc.c Tue Mar 27 01:39:39 2007
@@ -273,11 +273,11 @@
     return AXIS2_SUCCESS;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_handler_desc_free(axis2_handler_desc_t *handler_desc,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (handler_desc->param_container)
     {
@@ -308,7 +308,7 @@
         AXIS2_FREE(env->allocator, handler_desc);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_param_container_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/module_desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/module_desc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/module_desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/module_desc.c Tue Mar 27 01:39:39 2007
@@ -110,11 +110,11 @@
     return module_desc;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_module_desc_free(axis2_module_desc_t *module_desc,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (module_desc->module)
     {
@@ -162,18 +162,19 @@
         AXIS2_FREE(env->allocator, module_desc);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_module_desc_free_void_arg(void *module_desc,
     const axis2_env_t *env)
 {
     axis2_module_desc_t *module_desc_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     module_desc_l = (axis2_module_desc_t *) module_desc;
-    return axis2_module_desc_free(module_desc_l, env);
+    axis2_module_desc_free(module_desc_l, env);
+    return;
 }
 
 AXIS2_EXTERN axis2_flow_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/msg.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/msg.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/msg.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/msg.c Tue Mar 27 01:39:39 2007
@@ -74,11 +74,11 @@
     return msg;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_msg_free(axis2_msg_t *msg,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (msg->flow)
     {
@@ -112,7 +112,7 @@
         AXIS2_FREE(env->allocator, msg);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/op.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/op.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/op.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/op.c Tue Mar 27 01:39:39 2007
@@ -183,12 +183,12 @@
     return op;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_op_free(
     axis2_op_t *op,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (op->base)
     {
@@ -249,19 +249,20 @@
         AXIS2_FREE(env->allocator, op);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_op_free_void_arg(void *op,
     const axis2_env_t *env)
 {
     axis2_op_t *op_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     op_l = (axis2_op_t *) op;
-    return axis2_op_free(op_l, env);
+    axis2_op_free(op_l, env);
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/phase_rule.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/phase_rule.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/phase_rule.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/phase_rule.c Tue Mar 27 01:39:39 2007
@@ -200,11 +200,11 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_phase_rule_free(axis2_phase_rule_t *phase_rule,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (phase_rule->before)
     {
@@ -223,7 +223,7 @@
 
     AXIS2_FREE(env->allocator, phase_rule);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 axis2_phase_rule_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/svc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/svc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/svc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/svc.c Tue Mar 27 01:39:39 2007
@@ -242,11 +242,11 @@
     return svc;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_svc_free(axis2_svc_t *svc,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (svc->param_container)
     {
@@ -382,7 +382,7 @@
         svc = NULL;
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/description/svc_grp.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/svc_grp.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/svc_grp.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/svc_grp.c Tue Mar 27 01:39:39 2007
@@ -109,12 +109,12 @@
 
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_svc_grp_free(
     axis2_svc_grp_t *svc_grp,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (svc_grp->param_container)
     {
@@ -147,7 +147,7 @@
     {
         AXIS2_FREE(env->allocator, svc_grp);
     }
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/transport_in_desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/transport_in_desc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/transport_in_desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/transport_in_desc.c Tue Mar 27 01:39:39 2007
@@ -71,11 +71,11 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_transport_in_desc_free(axis2_transport_in_desc_t *transport_in,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (transport_in->recv)
     {
@@ -109,19 +109,20 @@
 
     AXIS2_FREE(env->allocator, transport_in);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_transport_in_desc_free_void_arg(void *transport_in,
     const axis2_env_t *env)
 {
     axis2_transport_in_desc_t *transport_in_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     transport_in_l = (axis2_transport_in_desc_t *) transport_in;
-    return axis2_transport_in_desc_free(transport_in_l, env);
+    axis2_transport_in_desc_free(transport_in_l, env);
+    return;
 }
 
 AXIS2_TRANSPORT_ENUMS AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/description/transport_out_desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/transport_out_desc.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/transport_out_desc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/transport_out_desc.c Tue Mar 27 01:39:39 2007
@@ -65,11 +65,11 @@
     return transport_out;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_transport_out_desc_free(axis2_transport_out_desc_t *transport_out,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (transport_out->sender)
     {
@@ -103,19 +103,20 @@
 
     AXIS2_FREE(env->allocator, transport_out);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_transport_out_desc_free_void_arg(void *transport_out,
     const axis2_env_t *env)
 {
     axis2_transport_out_desc_t *transport_out_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     transport_out_l = (axis2_transport_out_desc_t *) transport_out;
-    return axis2_transport_out_desc_free(transport_out_l, env);
+    axis2_transport_out_desc_free(transport_out_l, env);
+    return;
 }
 
 AXIS2_TRANSPORT_ENUMS AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/engine/axis2_disp_checker.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/axis2_disp_checker.h?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/axis2_disp_checker.h (original)
+++ webservices/axis2/trunk/c/modules/core/engine/axis2_disp_checker.h Tue Mar 27 01:39:39 2007
@@ -81,7 +81,7 @@
      * @param env pointer to environment struct
      * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE
      */
-    AXIS2_EXTERN axis2_status_t AXIS2_CALL
+    AXIS2_EXTERN void AXIS2_CALL
     axis2_disp_checker_free(axis2_disp_checker_t *disp_checker,
         const axis2_env_t *env);
 

Modified: webservices/axis2/trunk/c/modules/core/engine/conf.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/conf.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/conf.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/conf.c Tue Mar 27 01:39:39 2007
@@ -248,15 +248,14 @@
     return conf;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_conf_free(
     axis2_conf_t *conf,
     const axis2_env_t *env)
 {
-    axis2_status_t status = AXIS2_SUCCESS;
     int i = 0;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (conf->param_container)
     {
@@ -476,7 +475,7 @@
         AXIS2_FREE(env->allocator, conf);
     }
 
-    return status;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/engine/disp.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/disp.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/disp.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/disp.c Tue Mar 27 01:39:39 2007
@@ -172,17 +172,17 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_disp_free(
     struct axis2_disp *disp,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     if (disp->name)
     {
         axis2_string_free(disp->name, env);
     }
     AXIS2_FREE(env->allocator, disp);
-    return AXIS2_SUCCESS;
+    return;
 }
 

Modified: webservices/axis2/trunk/c/modules/core/engine/disp_checker.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/disp_checker.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/disp_checker.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/disp_checker.c Tue Mar 27 01:39:39 2007
@@ -126,12 +126,12 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_disp_checker_free(
     axis2_disp_checker_t *disp_checker,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (disp_checker->name)
     {
@@ -140,7 +140,7 @@
 
     AXIS2_FREE(env->allocator, disp_checker);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/engine/engine.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/engine.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/engine.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/engine.c Tue Mar 27 01:39:39 2007
@@ -62,14 +62,14 @@
     return engine;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_engine_free(
     axis2_engine_t *engine,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     AXIS2_FREE(env->allocator, engine);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/engine/handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/handler.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/handler.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/handler.c Tue Mar 27 01:39:39 2007
@@ -31,7 +31,7 @@
 #define AXIS2_INTF_TO_IMPL(handler) ((axis2_handler_impl_t *)handler)
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_handler_free(
     axis2_handler_t *handler,
     const axis2_env_t *env);
@@ -114,7 +114,7 @@
     return &(handler_impl->handler);
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_handler_free(
     axis2_handler_t *handler,
     const axis2_env_t *env)
@@ -131,7 +131,7 @@
     AXIS2_FREE(env->allocator, handler_impl);
     handler_impl = NULL;
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 const axis2_string_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/engine/phase.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/phase.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/phase.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/phase.c Tue Mar 27 01:39:39 2007
@@ -948,12 +948,12 @@
     return status;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_phase_free(
     axis2_phase_t *phase,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (phase->name)
     {
@@ -965,7 +965,7 @@
         axis2_array_list_free(phase->handlers, env);
     }
     AXIS2_FREE(env->allocator, phase);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 static axis2_status_t

Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/phase_holder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/phaseresolver/phase_holder.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/phaseresolver/phase_holder.c (original)
+++ webservices/axis2/trunk/c/modules/core/phaseresolver/phase_holder.c Tue Mar 27 01:39:39 2007
@@ -62,18 +62,18 @@
     return phase_holder;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_phase_holder_free(axis2_phase_holder_t *phase_holder,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (phase_holder)
     {
         AXIS2_FREE(env->allocator, phase_holder);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_bool_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c (original)
+++ webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c Tue Mar 27 01:39:39 2007
@@ -120,19 +120,19 @@
     return phase_resolver;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_phase_resolver_free(
     axis2_phase_resolver_t *phase_resolver,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (phase_resolver)
     {
         AXIS2_FREE(env->allocator, phase_resolver);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c Tue Mar 27 01:39:39 2007
@@ -92,11 +92,11 @@
     return msg_recv;
 }
 
-AXIS2_EXPORT axis2_status_t AXIS2_CALL
+AXIS2_EXPORT void AXIS2_CALL
 axis2_msg_recv_free(axis2_msg_recv_t *msg_recv,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (msg_recv->scope)
     {
@@ -108,7 +108,7 @@
         AXIS2_FREE(env->allocator, msg_recv);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXPORT axis2_svc_skeleton_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c Tue Mar 27 01:39:39 2007
@@ -354,12 +354,11 @@
 AXIS2_EXPORT int axis2_remove_instance(struct axis2_msg_recv *inst,
     const axis2_env_t *env)
 {
-    axis2_status_t status = AXIS2_FAILURE;
     if (inst)
     {
-        status = axis2_msg_recv_free(inst, env);
+        axis2_msg_recv_free(inst, env);
     }
-    return status;
+    return AXIS2_SUCCESS;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/receivers/svr_callback.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/receivers/svr_callback.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/svr_callback.c (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/svr_callback.c Tue Mar 27 01:39:39 2007
@@ -42,18 +42,18 @@
     return svr_callback;
 }
 
-AXIS2_EXPORT axis2_status_t AXIS2_CALL
+AXIS2_EXPORT void AXIS2_CALL
 axis2_svr_callback_free(axis2_svr_callback_t *svr_callback,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (svr_callback)
     {
         AXIS2_FREE(env->allocator, svr_callback);
     }
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXPORT axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_header.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_header.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_header.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_header.c Tue Mar 27 01:39:39 2007
@@ -96,12 +96,12 @@
     return ret;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_header_free(
     axis2_http_header_t *http_header,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (http_header->name)
     {
@@ -113,7 +113,7 @@
     }
 
     AXIS2_FREE(env->allocator, http_header);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_out_transport_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_out_transport_info.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_out_transport_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_out_transport_info.c Tue Mar 27 01:39:39 2007
@@ -79,12 +79,12 @@
 }
 
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_out_transport_info_impl_free(
     axis2_http_out_transport_info_t *http_out_transport_info,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     if(http_out_transport_info->response)
     {
         AXIS2_HTTP_SIMPLE_RESPONSE_FREE(http_out_transport_info->response, env);
@@ -94,7 +94,7 @@
         AXIS2_FREE(env->allocator, http_out_transport_info->encoding);
     }
     AXIS2_FREE(env->allocator, http_out_transport_info);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_http_out_transport_info_t *AXIS2_CALL
@@ -130,24 +130,26 @@
     return http_out_transport_info;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_out_transport_info_free(
     axis2_http_out_transport_info_t *http_out_transport_info,
     const axis2_env_t *env)
 {
-    return http_out_transport_info->free_function(http_out_transport_info, env);
+    http_out_transport_info->free_function(http_out_transport_info, env);
+    return;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_out_transport_info_free_void_arg(
     void *transport_info,
     const axis2_env_t *env)
 {
     axis2_http_out_transport_info_t *transport_info_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     transport_info_l = (axis2_http_out_transport_info_t *) transport_info;
-    return axis2_http_out_transport_info_free(transport_info_l, env);
+    axis2_http_out_transport_info_free(transport_info_l, env);
+    return;
 }
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_request_line.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_request_line.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_request_line.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_request_line.c Tue Mar 27 01:39:39 2007
@@ -57,12 +57,12 @@
     return request_line;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_request_line_free(
     axis2_http_request_line_t *request_line,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (request_line->method)
     {
@@ -78,7 +78,7 @@
     }
 
     AXIS2_FREE(env->allocator, request_line);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_http_request_line_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_request.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_request.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_request.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_request.c Tue Mar 27 01:39:39 2007
@@ -85,12 +85,12 @@
     return simple_request;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_simple_request_free(
     axis2_http_simple_request_t *simple_request,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (AXIS2_TRUE == simple_request->owns_stream)
     {
@@ -98,7 +98,6 @@
     }
     /*
         Don't free the stream since it belongs to the socket
-        TODO : if chunked remove the chunked stream.
     */
     if (simple_request->request_line)
     {
@@ -121,7 +120,7 @@
 
     AXIS2_FREE(env->allocator, simple_request);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_http_request_line_t *AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_response.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_response.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_response.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_simple_response.c Tue Mar 27 01:39:39 2007
@@ -92,12 +92,12 @@
     return simple_response;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_simple_response_free(
     axis2_http_simple_response_t *simple_response,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (simple_response->status_line)
     {
@@ -121,10 +121,11 @@
     }
 
     AXIS2_FREE(env->allocator, simple_response);
-    /* Stream is not freed
+    /* 
+     * Stream is not freed
      * Assumption : stream doesn't belong to the response
      */
-    return AXIS2_SUCCESS;
+    return;
 }
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_status_line.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_status_line.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_status_line.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_status_line.c Tue Mar 27 01:39:39 2007
@@ -131,12 +131,12 @@
     return status_line;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_status_line_free(
     axis2_http_status_line_t *status_line,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (status_line->line)
     {
@@ -156,7 +156,7 @@
     }
 
     AXIS2_FREE(env->allocator, status_line);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/common/http_worker.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/common/http_worker.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/common/http_worker.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/common/http_worker.c Tue Mar 27 01:39:39 2007
@@ -80,18 +80,18 @@
     return http_worker;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_worker_free(
     axis2_http_worker_t *http_worker,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     http_worker->conf_ctx = NULL;
 
     AXIS2_FREE(env->allocator, http_worker);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN axis2_bool_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_receiver.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_receiver.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_receiver.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_receiver.c Tue Mar 27 01:39:39 2007
@@ -78,13 +78,11 @@
     axis2_transport_receiver_t *server,
     const axis2_env_t *env);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_server_free(
     axis2_transport_receiver_t *server,
     const axis2_env_t *env);
 
-/***************************** End of function headers ************************/
-
 AXIS2_EXTERN axis2_transport_receiver_t *AXIS2_CALL
 axis2_http_server_create(
     const axis2_env_t *env,
@@ -144,13 +142,13 @@
     return &(server_impl->http_server);
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_server_free(
     axis2_transport_receiver_t *server,
     const axis2_env_t *env)
 {
     axis2_http_server_impl_t *server_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     server_impl = AXIS2_INTF_TO_IMPL(server);
     if (server_impl->svr_thread)
     {
@@ -174,7 +172,7 @@
         AXIS2_FREE(env->allocator, server->ops);
     }
     AXIS2_FREE(env->allocator, server_impl);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_response_writer.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_response_writer.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_response_writer.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_response_writer.c Tue Mar 27 01:39:39 2007
@@ -90,12 +90,11 @@
     axis2_http_response_writer_t *response_writer,
     const axis2_env_t *env);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_response_writer_free(
     axis2_http_response_writer_t *response_writer,
     const axis2_env_t *env);
 
-/***************************** End of function headers ************************/
 axis2_http_response_writer_t *AXIS2_CALL
 axis2_http_response_writer_create(
     const axis2_env_t *env,
@@ -164,7 +163,7 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_response_writer_free(
     axis2_http_response_writer_t *response_writer,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c Tue Mar 27 01:39:39 2007
@@ -86,7 +86,7 @@
     const axis2_env_t *env,
     axis2_http_worker_t *worker);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_svr_thread_free(
     axis2_http_svr_thread_t *svr_thread,
     const axis2_env_t *env);
@@ -157,13 +157,13 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_svr_thread_free(
     axis2_http_svr_thread_t *svr_thread,
     const axis2_env_t *env)
 {
     axis2_http_svr_thread_impl_t *svr_thread_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     svr_thread_impl = AXIS2_INTF_TO_IMPL(svr_thread);
 
     if (svr_thread_impl->worker)
@@ -181,7 +181,7 @@
         AXIS2_FREE(env->allocator, svr_thread->ops);
 
     AXIS2_FREE(env->allocator, AXIS2_INTF_TO_IMPL(svr_thread));
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c Tue Mar 27 01:39:39 2007
@@ -107,7 +107,7 @@
     const axis2_simple_http_svr_conn_t *svr_conn,
     const axis2_env_t *env);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_simple_http_svr_conn_free(
     axis2_simple_http_svr_conn_t *svr_conn,
     const axis2_env_t *env);
@@ -178,7 +178,7 @@
     return &(svr_conn_impl->svr_conn);
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_simple_http_svr_conn_free(
     axis2_simple_http_svr_conn_t *svr_conn,
     const axis2_env_t *env)
@@ -196,7 +196,7 @@
     AXIS2_FREE(env->allocator, svr_conn_impl);
     svr_conn_impl = NULL;
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c Tue Mar 27 01:39:39 2007
@@ -83,12 +83,12 @@
 }
 
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_client_free(
     axis2_http_client_t *http_client,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (http_client->url)
     {
@@ -105,19 +105,20 @@
     }
 
     AXIS2_FREE(env->allocator, http_client);
-    return AXIS2_SUCCESS;
+    return;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_client_free_void_arg(
     void *client,
     const axis2_env_t *env)
 {
     axis2_http_client_t *client_l = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     client_l = (axis2_http_client_t *)client;
-    return axis2_http_client_free(client_l, env);
+    axis2_http_client_free(client_l, env);
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c Tue Mar 27 01:39:39 2007
@@ -110,12 +110,12 @@
     return sender;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_sender_free(
     axis2_http_sender_t *sender,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     if (sender->http_version)
     {
@@ -127,7 +127,7 @@
      */
     sender->client = NULL;
     AXIS2_FREE(env->allocator, sender);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_transport_sender.c Tue Mar 27 01:39:39 2007
@@ -79,13 +79,11 @@
     axiom_soap_envelope_t *out,
     axiom_output_t *om_output);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_transport_sender_free(
     axis2_transport_sender_t *transport_sender,
     const axis2_env_t *env);
 
-/***************************** End of function headers ************************/
-
 axis2_transport_sender_t *AXIS2_CALL
 axis2_http_transport_sender_create(
     const axis2_env_t *env)
@@ -131,7 +129,7 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_http_transport_sender_free(
     axis2_transport_sender_t *transport_sender,
     const axis2_env_t *env)
@@ -150,7 +148,7 @@
         AXIS2_FREE(env->allocator, transport_sender->ops);
 
     AXIS2_FREE(env->allocator, transport_sender_impl);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c Tue Mar 27 01:39:39 2007
@@ -94,13 +94,13 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 libcurl_stream_free(
     axis2_stream_t *stream,
     const axis2_env_t *env)
 {
     libcurl_stream_impl_t *stream_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     stream_impl = AXIS2_INTF_TO_IMPL(stream);
     if (stream_impl->stream.ops)
@@ -109,7 +109,7 @@
     }
     AXIS2_FREE(env->allocator, stream_impl);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c Tue Mar 27 01:39:39 2007
@@ -38,8 +38,7 @@
 
 #define AXIS2_INTF_TO_IMPL(stream) ((ssl_stream_impl_t *)(stream))
 
-/********************************Function headers******************************/
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_ssl_stream_free(
     axis2_stream_t *stream, 
     const axis2_env_t *env
@@ -140,14 +139,12 @@
 }
 
 
-axis2_status_t AXIS2_CALL
-axis2_ssl_stream_free(
-    axis2_stream_t *stream,
-    const axis2_env_t *env
-    )
+void AXIS2_CALL
+axis2_ssl_stream_free(axis2_stream_t *stream,
+    const axis2_env_t *env)
 {
     ssl_stream_impl_t *stream_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     stream_impl = AXIS2_INTF_TO_IMPL(stream);
     if (stream_impl->stream.ops)
@@ -157,7 +154,7 @@
     axis2_ssl_utils_cleanup_ssl(env, stream_impl->ctx, stream_impl->ssl);
     AXIS2_FREE(env->allocator, stream_impl);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_out_transport_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_out_transport_info.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_out_transport_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_out_transport_info.c Tue Mar 27 01:39:39 2007
@@ -37,13 +37,13 @@
 #define AXIS2_INTF_TO_IMPL(out_transport_info) \
                 ((axis2_iis_out_transport_info_t *)(out_transport_info))
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_iis_out_transport_info_free(
     axis2_http_out_transport_info_t *out_transport_info,
     const axis2_env_t *env)
 {
     axis2_iis_out_transport_info_t *info = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     info = AXIS2_INTF_TO_IMPL(out_transport_info);
     
@@ -54,19 +54,20 @@
     }
 
     AXIS2_FREE(env->allocator, info);
-    return AXIS2_SUCCESS;
+    return;
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_iis_out_transport_info_free_void_arg(
     void *transport_info,
     const axis2_env_t *env)
 {
     axis2_http_out_transport_info_t *transport_info_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     transport_info_l = (axis2_http_out_transport_info_t *) transport_info;
-    return axis2_http_out_transport_info_free(transport_info_l, env);
+    axis2_http_out_transport_info_free(transport_info_l, env);
+    return;
 }
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_stream.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_stream.c Tue Mar 27 01:39:39 2007
@@ -38,7 +38,7 @@
 
 #define AXIS2_INTF_TO_IMPL(stream) ((iis_stream_impl_t *)(stream))
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 iis_stream_free(
     axis2_stream_t *stream,
     const axis2_env_t *env);
@@ -112,13 +112,13 @@
     return &(stream_impl->stream);
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 iis_stream_free(
     axis2_stream_t *stream,
     const axis2_env_t *env)
 {
     iis_stream_impl_t *stream_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     stream_impl = AXIS2_INTF_TO_IMPL(stream);
     if (stream_impl->stream.ops)
@@ -127,7 +127,7 @@
     }
     AXIS2_FREE(env->allocator, stream_impl);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_worker.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_worker.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_worker.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/IIS/axis2_iis_worker.c Tue Mar 27 01:39:39 2007
@@ -128,13 +128,13 @@
     return &(iis_worker_impl->iis_worker);	
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_iis_worker_free(
     axis2_iis_worker_t *iis_worker,
     const axis2_env_t *env)
 {
     axis2_iis_worker_impl_t *worker_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     worker_impl = AXIS2_INTF_TO_IMPL(iis_worker);
     if (worker_impl->conf_ctx)
@@ -148,7 +148,7 @@
 
     AXIS2_FREE(env->allocator, worker_impl->conf_ctx);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_out_transport_info.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_out_transport_info.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_out_transport_info.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_out_transport_info.c Tue Mar 27 01:39:39 2007
@@ -31,16 +31,17 @@
 #define AXIS2_INTF_TO_IMPL(out_transport_info) \
                 ((axis2_apache2_out_transport_info_t *)(out_transport_info))
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_apache2_out_transport_info_free_void_arg(
     void *transport_info,
     const axis2_env_t *env)
 {
     axis2_http_out_transport_info_t *transport_info_l = NULL;
 
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
     transport_info_l = (axis2_http_out_transport_info_t *) transport_info;
-    return axis2_http_out_transport_info_free(transport_info_l, env);
+    axis2_http_out_transport_info_free(transport_info_l, env);
+    return;
 }
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_stream.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_stream.c Tue Mar 27 01:39:39 2007
@@ -113,7 +113,7 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 apache2_stream_free(
     axis2_stream_t *stream,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_worker.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_worker.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_worker.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/apache2_worker.c Tue Mar 27 01:39:39 2007
@@ -61,13 +61,11 @@
     const axis2_env_t *env,
     axis2_stream_t *stream);
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_apache2_worker_free(
     axis2_apache2_worker_t *apache2_worker,
     const axis2_env_t *env);
 
-/***************************** End of function headers ************************/
-
 AXIS2_EXTERN axis2_apache2_worker_t *AXIS2_CALL
 axis2_apache2_worker_create(
     const axis2_env_t *env,
@@ -109,13 +107,13 @@
     return &(apache2_worker_impl->apache2_worker);
 }
 
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
 axis2_apache2_worker_free(
     axis2_apache2_worker_t *apache2_worker,
     const axis2_env_t *env)
 {
     axis2_apache2_worker_impl_t *worker_impl = NULL;
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     worker_impl = AXIS2_INTF_TO_IMPL(apache2_worker);
     if (worker_impl->conf_ctx)
@@ -129,7 +127,7 @@
 
     AXIS2_FREE(env->allocator, worker_impl->conf_ctx);
 
-    return AXIS2_SUCCESS;
+    return;
 }
 
 int AXIS2_CALL

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/axis2_apache2_out_transport_info.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/axis2_apache2_out_transport_info.h?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/axis2_apache2_out_transport_info.h (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/axis2_apache2_out_transport_info.h Tue Mar 27 01:39:39 2007
@@ -46,7 +46,7 @@
  * cast into appropriate type and then pass the cast object
  * into the http_out_transport_info structure's free method
  */
-AXIS2_EXTERN axis2_status_t AXIS2_CALL 
+AXIS2_EXTERN void AXIS2_CALL 
 axis2_apache2_out_transport_info_free_void_arg(
     void *transport_info,
     const axis2_env_t *env);

Modified: webservices/axis2/trunk/c/modules/core/transport/http/util/http_chunked_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/util/http_chunked_stream.c?view=diff&rev=522810&r1=522809&r2=522810
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/util/http_chunked_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/util/http_chunked_stream.c Tue Mar 27 01:39:39 2007
@@ -62,15 +62,15 @@
     return chunked_stream;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+AXIS2_EXTERN void AXIS2_CALL
 axis2_http_chunked_stream_free(
     axis2_http_chunked_stream_t *chunked_stream,
     const axis2_env_t *env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, void);
 
     AXIS2_FREE(env->allocator, chunked_stream);
-    return AXIS2_SUCCESS;
+    return;
 }
 
 AXIS2_EXTERN int AXIS2_CALL



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