summaryrefslogtreecommitdiffstats
path: root/library/http
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-01-13 11:45:52 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-01-13 11:45:52 (GMT)
commit2092cc6ad8af82b0cc6c9ba53a0f20994bf04ae2 (patch)
tree156f68bb67344c2d036d9ae1a0ac96b9db859002 /library/http
parent2908f47e6cc2661771200116780b69f4c4a434f4 (diff)
downloadtcl-2092cc6ad8af82b0cc6c9ba53a0f20994bf04ae2.zip
tcl-2092cc6ad8af82b0cc6c9ba53a0f20994bf04ae2.tar.gz
tcl-2092cc6ad8af82b0cc6c9ba53a0f20994bf04ae2.tar.bz2
* library/http/http.tcl (http::Connect): [Bug 3472316]: Ensure that we
only try to read the socket error exactly once.
Diffstat (limited to 'library/http')
-rw-r--r--library/http/http.tcl5
1 files changed, 2 insertions, 3 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index e8a7c1e..1496d63 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -707,10 +707,9 @@ proc http::cleanup {token} {
proc http::Connect {token} {
variable $token
upvar 0 $token state
- global errorInfo errorCode
if {[eof $state(sock)] ||
- [string length [fconfigure $state(sock) -error]]} {
- Finish $token "connect failed [fconfigure $state(sock) -error]" 1
+ [string length [set err [fconfigure $state(sock) -error]]]} {
+ Finish $token "connect failed $err" 1
} else {
set state(status) connect
fileevent $state(sock) writable {}