mirror of
https://github.com/curl/curl.git
synced 2026-07-24 12:17:16 +03:00
Georg Horn found yet another SSL reading problem caused by the non-blocks.
This was a real bummer!
This commit is contained in:
parent
bdea56cd3f
commit
b28051881e
1 changed files with 1 additions and 1 deletions
|
|
@ -326,7 +326,7 @@ int Curl_read(struct connectdata *conn,
|
|||
/* if there's data pending, then we re-invoke SSL_read() */
|
||||
break;
|
||||
}
|
||||
} while(0);
|
||||
} while(1);
|
||||
if(loop && SSL_pending(conn->ssl.handle))
|
||||
return -1; /* basicly EWOULDBLOCK */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue