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

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