projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
098a238
)
BIO socket connect failure was not handled correctly.
author
Davide Galassi
<davide.galassi@gmail.com>
Mon, 18 Apr 2016 13:48:27 +0000
(15:48 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 20 Apr 2016 19:26:01 +0000
(21:26 +0200)
The state was always set to BIO_CONN_S_OK.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/bio/bss_conn.c
patch
|
blob
|
history
diff --git
a/crypto/bio/bss_conn.c
b/crypto/bio/bss_conn.c
index a4949b3d60700b46039073f865660f4e087a0417..c1abe87e250d878879ab2e410a7b1ec69547cd95 100644
(file)
--- a/
crypto/bio/bss_conn.c
+++ b/
crypto/bio/bss_conn.c
@@
-198,7
+198,7
@@
static int conn_state(BIO *b, BIO_CONNECT *c)
ret = BIO_connect(b->num, BIO_ADDRINFO_address(c->addr_iter),
BIO_SOCK_KEEPALIVE | c->connect_mode);
b->retry_reason = 0;
- if (ret
<
0) {
+ if (ret
==
0) {
if (BIO_sock_should_retry(ret)) {
BIO_set_retry_special(b);
c->state = BIO_CONN_S_BLOCKED_CONNECT;