mirror of
https://github.com/curl/curl.git
synced 2026-04-20 03:31:14 +03:00
Kevin Roth's discovered SSL download problem
This commit is contained in:
parent
5370d7a6eb
commit
ddbcccd43d
1 changed files with 1 additions and 1 deletions
|
|
@ -310,7 +310,7 @@ int Curl_read(struct connectdata *conn,
|
|||
do {
|
||||
nread = SSL_read(conn->ssl.handle, buf, buffersize);
|
||||
|
||||
if(nread > 0)
|
||||
if(nread >= 0)
|
||||
/* successful read */
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue