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 da...@apache.org on 2006/10/24 09:15:14 UTC

svn commit: r467262 - /webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c

Author: damitha
Date: Tue Oct 24 00:15:13 2006
New Revision: 467262

URL: http://svn.apache.org/viewvc?view=rev&rev=467262
Log:
Fixed AXIS2C-307

Modified:
    webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c

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=467262&r1=467261&r2=467262
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/msg_recv.c Tue Oct 24 00:15:13 2006
@@ -475,7 +475,8 @@
     AXIS2_ENGINE_FREE(engine, env);
     /* test code: uncomment this when test is over */ 
     axis2_core_utils_reset_out_msg_ctx(env, out_msg_ctx);
-    AXIS2_MSG_CTX_FREE(out_msg_ctx, env);
+    if (!AXIS2_MSG_CTX_IS_PAUSED(out_msg_ctx, env))
+        AXIS2_MSG_CTX_FREE(out_msg_ctx, env);
     /*end test code */
     return status;
 }



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