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/02/22 07:51:46 UTC

svn commit: r379716 - /webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c

Author: sahan
Date: Tue Feb 21 22:51:44 2006
New Revision: 379716

URL: http://svn.apache.org/viewcvs?rev=379716&view=rev
Log:
Freeing conf_ctx when server exits

Modified:
    webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c?rev=379716&r1=379715&r2=379716&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/http_server_main.c Tue Feb 21 22:51:44 2006
@@ -44,6 +44,10 @@
 
 void system_exit(axis2_env_t *env, int status)
 {
+    if(NULL != server)
+    {
+       AXIS2_TRANSPORT_RECEIVER_FREE(server,  &system_env);
+    }
 	if(NULL != env)
 	{
 		axis2_env_free(env);