GH356: Change assert to normal error
authorSergio Garcia Murillo <sergio.garcia.murillo@gmail.com>
Thu, 5 May 2016 21:27:30 +0000 (17:27 -0400)
committerRich Salz <rsalz@openssl.org>
Thu, 5 May 2016 21:27:30 +0000 (17:27 -0400)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
ssl/statem/statem_dtls.c

index a3090ef4908179e6697752e4cffb5d31be38cd18..88969b1d5d7c8371377a31c0bfbde03d781ff4a3 100644 (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 ==