Skip to content
Snippets Groups Projects
Commit ddbcccd4 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Kevin Roth's discovered SSL download problem

parent 5370d7a6
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment