Blame SOURCES/wget-1.14-set_sock_to_-1_if_no_persistent_conn.patch

226bdc
From 8760123cee87e07a276b8b13ef48ada3a490ad47 Mon Sep 17 00:00:00 2001
226bdc
From: Tomas Hozza <thozza@redhat.com>
226bdc
Date: Thu, 11 Jul 2013 11:22:43 +0000
226bdc
Subject: Set sock variable to -1 if no persistent conn exists
226bdc
226bdc
Wget should set sock variable to -1 if no persistent
226bdc
connection exists. Function persistent_available_p()
226bdc
tests persistent connection but if test_socket_open()
226bdc
fails it closes the socket but will not set sock variable
226bdc
to -1. After returning from persistent_available_p()
226bdc
it is possible that sock has still value of already
226bdc
closed connection.
226bdc
226bdc
Signed-off-by: Tomas Hozza <thozza@redhat.com>
226bdc
---
226bdc
diff --git a/src/http.c b/src/http.c
226bdc
index 669f0fe..a693355 100644
226bdc
--- a/src/http.c
226bdc
+++ b/src/http.c
226bdc
@@ -1983,6 +1983,10 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy,
226bdc
                     exec_name, quote (relevant->host));
226bdc
           return HOSTERR;
226bdc
         }
226bdc
+      else if (sock != -1)
226bdc
+        {
226bdc
+          sock = -1;
226bdc
+        }
226bdc
     }
226bdc
 
226bdc
   if (sock < 0)
226bdc
--
226bdc
cgit v0.9.0.2