mirror of https://github.com/openssl/openssl.git
GH356: Change assert to normal error
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
fc7f190c73
commit
50b4a9ba13
|
|
@ -224,8 +224,9 @@ int dtls1_do_write(SSL *s, int type)
|
|||
if (!dtls1_query_mtu(s))
|
||||
return -1;
|
||||
|
||||
OPENSSL_assert(s->d1->mtu >= dtls1_min_mtu(s)); /* should have something
|
||||
* reasonable now */
|
||||
if (s->d1->mtu < dtls1_min_mtu(s))
|
||||
/* should have something reasonable now */
|
||||
return -1;
|
||||
|
||||
if (s->init_off == 0 && type == SSL3_RT_HANDSHAKE)
|
||||
OPENSSL_assert(s->init_num ==
|
||||
|
|
|
|||
Loading…
Reference in New Issue