2002-12-09 Joe Shaw <joe@ximian.com>
* libsoup/soup-queue.c (proxy_https_connect_cb): We never want to
release the connection on message free, even if the connection was
unsuccessful.
+2002-12-09 Joe Shaw <joe@ximian.com>
+
+ * libsoup/soup-queue.c (proxy_https_connect_cb): We never want to
+ release the connection on message free, even if the connection was
+ unsuccessful.
+
2002-12-03 Joe Shaw <joe@ximian.com>
* libsoup/soup-ssl.c (soup_ssl_get_iochannel_real): Call
{
gboolean *ret = user_data;
+ /*
+ * Avoid releasing the connection on message free
+ */
+ msg->connection = NULL;
+
if (!SOUP_MESSAGE_IS_ERROR (msg)) {
/*
* Bless the connection to SSL
*/
msg->connection->channel =
soup_ssl_get_iochannel (msg->connection->channel);
-
- /*
- * Avoid releasing the connection on message free
- */
- msg->connection = NULL;
*ret = TRUE;
}