You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1000 B
36 lines
1000 B
6 years ago
|
From fd5664bc7322ebffb8d5532d17a743ace8a5449e Mon Sep 17 00:00:00 2001
|
||
|
From: Zdenek Pavlas <zpavlas@redhat.com>
|
||
|
Date: Fri, 26 Apr 2013 14:56:38 +0200
|
||
|
Subject: [PATCH 2/2] url: initialize speed-check data for file:// protocol
|
||
|
|
||
|
... in order to prevent an artificial timeout event based on stale
|
||
|
speed-check data from a previous network transfer. This commit fixes
|
||
|
a regression caused by 9dd85bced56f6951107f69e581c872c1e7e3e58e.
|
||
|
|
||
|
Bug: https://bugzilla.redhat.com/906031
|
||
|
|
||
|
[upstream commit b37b5233cab96b5b1f2ab7f6e0b9c3df77320bba]
|
||
|
|
||
|
Signed-off-by: Kamil Dudka <kdudka@redhat.com>
|
||
|
---
|
||
|
lib/url.c | 3 +++
|
||
|
1 files changed, 3 insertions(+), 0 deletions(-)
|
||
|
|
||
|
diff --git a/lib/url.c b/lib/url.c
|
||
|
index 918ce58..b269027 100644
|
||
|
--- a/lib/url.c
|
||
|
+++ b/lib/url.c
|
||
|
@@ -4895,6 +4895,9 @@ static CURLcode create_conn(struct SessionHandle *data,
|
||
|
-1, NULL); /* no upload */
|
||
|
}
|
||
|
|
||
|
+ /* since we skip do_init() */
|
||
|
+ Curl_speedinit(data);
|
||
|
+
|
||
|
return result;
|
||
|
}
|
||
|
#endif
|
||
|
--
|
||
|
1.7.1
|
||
|
|