mirror of https://github.com/openssl/openssl.git
Fix SSL_clear unused return
Fix missing return value check in dtls1_listen when calling SSL_clear(). Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
77d514c5a0
commit
c7f5b5d7bc
|
|
@ -547,7 +547,8 @@ int dtls1_listen(SSL *s, struct sockaddr *client)
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* Ensure there is no state left over from a previous invocation */
|
/* Ensure there is no state left over from a previous invocation */
|
||||||
SSL_clear(s);
|
if(!SSL_clear(s))
|
||||||
|
return -1;
|
||||||
|
|
||||||
SSL_set_options(s, SSL_OP_COOKIE_EXCHANGE);
|
SSL_set_options(s, SSL_OP_COOKIE_EXCHANGE);
|
||||||
s->d1->listen = 1;
|
s->d1->listen = 1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue