diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2016-12-08 16:32:36 -0500 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-12-19 02:26:52 -0500 |
commit | d00f2a8f2e8529024709f70c8ab4c4138dc651a0 (patch) | |
tree | aa867b0c1a2d4f5f3f59541d4990adf8576a27c3 /lib/ftp.c | |
parent | afb57f7b0bfe179b1d31acf652cc136349de32ec (diff) | |
download | curl-d00f2a8f2e8529024709f70c8ab4c4138dc651a0.tar.gz |
http_proxy: Fix proxy CONNECT hang on pending data
- Check for pending data before waiting on the socket.
Bug: https://github.com/curl/curl/issues/1156
Reported-by: Adam Langley
Diffstat (limited to 'lib/ftp.c')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -740,7 +740,7 @@ CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */ * wait for more data anyway. */ } - else if(!Curl_ssl_data_pending(conn, FIRSTSOCKET)) { + else if(!Curl_conn_data_pending(conn, FIRSTSOCKET)) { switch(SOCKET_READABLE(sockfd, interval_ms)) { case -1: /* select() error, stop reading */ failf(data, "FTP response aborted due to select/poll error: %d", |