Author: damitha
Date: Fri Aug 1 09:02:27 2008
New Revision: 681733
URL: http://svn.apache.org/viewvc?rev=681733&view=rev
Log:
Removing check for msg_ctx_paused in the free function
Modified:
webservices/axis2/trunk/c/src/core/context/msg_ctx.c
Modified: webservices/axis2/trunk/c/src/core/context/msg_ctx.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/context/msg_ctx.c?rev=681733&r1=681732&r2=681733&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/context/msg_ctx.c (original)
+++ webservices/axis2/trunk/c/src/core/context/msg_ctx.c Fri Aug 1 09:02:27 2008
@@ -371,8 +371,10 @@
axis2_msg_ctx_t * msg_ctx,
const axutil_env_t * env)
{
- if (msg_ctx->paused || msg_ctx->keep_alive)
+ if (msg_ctx->keep_alive)
+ {
return;
+ }
if (msg_ctx->base)
{
|