Jofell Gallardo posted a libcurl log using FTP that exposed a bug which made

a control connection that was deemed "dead" to yet be re-used in a following
request. We must make sure the connection gets closed on this situation.
This commit is contained in:
Daniel Stenberg
2007-07-17 20:59:53 +00:00
parent 98b9349be7
commit 1d728aae2a
3 changed files with 8 additions and 2 deletions

View File

@@ -3137,7 +3137,7 @@ CURLcode Curl_ftp_done(struct connectdata *conn, CURLcode status, bool premature
if(!nread && (CURLE_OPERATION_TIMEDOUT == result)) {
failf(data, "control connection looks dead");
ftpc->ctl_valid = FALSE; /* mark control connection as bad */
return result;
conn->bits.close = TRUE; /* mark for closure */
}
if(result)