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 2007/04/01 07:53:01 UTC

svn commit: r524538 - in /webservices/axis2/trunk/c/modules/core/transport/http/sender: libcurl/libcurl_stream.c ssl/ssl_stream.c

Author: samisa
Date: Sat Mar 31 22:53:01 2007
New Revision: 524538

URL: http://svn.apache.org/viewvc?view=rev&rev=524538
Log:
Removed ops

Modified:
    webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c
    webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c?view=diff&rev=524538&r1=524537&r2=524538
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/libcurl/libcurl_stream.c Sat Mar 31 22:53:01 2007
@@ -94,10 +94,6 @@
     AXIS2_ENV_CHECK(env, void);
 
     stream_impl = AXIS2_INTF_TO_IMPL(stream);
-    if (stream_impl->stream.ops)
-    {
-        AXIS2_FREE(env->allocator, stream_impl->stream.ops);
-    }
     AXIS2_FREE(env->allocator, stream_impl);
 
     return;

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c?view=diff&rev=524538&r1=524537&r2=524538
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/ssl/ssl_stream.c Sat Mar 31 22:53:01 2007
@@ -100,7 +100,6 @@
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    stream_impl->stream.ops = NULL;
     stream_impl->socket = socket;
     stream_impl->ctx = NULL;
     stream_impl->ssl = NULL;
@@ -138,10 +137,6 @@
     AXIS2_ENV_CHECK(env, void);
 
     stream_impl = AXIS2_INTF_TO_IMPL(stream);
-    if (stream_impl->stream.ops)
-    {
-        AXIS2_FREE(env->allocator, stream_impl->stream.ops);
-    }
     axis2_ssl_utils_cleanup_ssl(env, stream_impl->ctx, stream_impl->ssl);
     AXIS2_FREE(env->allocator, stream_impl);
 



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