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 2007/07/12 08:00:30 UTC

svn commit: r555500 - /webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c

Author: samisa
Date: Wed Jul 11 23:00:29 2007
New Revision: 555500

URL: http://svn.apache.org/viewvc?view=rev&rev=555500
Log:
Fixed the free of thread resources

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c?view=diff&rev=555500&r1=555499&r2=555500
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c Wed Jul 11 23:00:29 2007
@@ -294,11 +294,11 @@
 
     if (thread_env)
     {
-        /*axutil_free_thread_env(thread_env);*/
+        axutil_free_thread_env(thread_env);
         thread_env = NULL;
     }
 #ifdef AXIS2_SVR_MULTI_THREADED
-    /*axutil_thread_pool_exit_thread(env->thread_pool, thd);*/
+    axutil_thread_pool_exit_thread(env->thread_pool, thd);
 #endif
 
     return NULL;



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