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 2006/03/27 16:07:14 UTC

svn commit: r389150 - /webservices/axis2/trunk/c/modules/core/clientapi/call.c

Author: samisa
Date: Mon Mar 27 06:07:13 2006
New Revision: 389150

URL: http://svn.apache.org/viewcvs?rev=389150&view=rev
Log:
Fix to prevent double free for non blocking case

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/call.c

Modified: webservices/axis2/trunk/c/modules/core/clientapi/call.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/call.c?rev=389150&r1=389149&r2=389150&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/call.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/call.c Mon Mar 27 06:07:13 2006
@@ -523,7 +523,7 @@
     if (!svc_ctx)
         return AXIS2_FAILURE;
     
-    AXIS2_MSG_CTX_SET_TO(msg_ctx, env, call_impl->to);
+    /*AXIS2_MSG_CTX_SET_TO(msg_ctx, env, call_impl->to);*/
     
     conf_ctx = AXIS2_SVC_CTX_GET_CONF_CTX(svc_ctx, env);
     if (!conf_ctx)