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:
Sergio Garcia Murillo 2016-05-05 17:27:30 -04:00 committed by Rich Salz
parent fc7f190c73
commit 50b4a9ba13
1 changed files with 3 additions and 2 deletions

View File

@ -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 ==