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:
fc7f190
)
GH356: Change assert to normal error
author
Sergio Garcia Murillo
<sergio.garcia.murillo@gmail.com>
Thu, 5 May 2016 21:27:30 +0000
(17:27 -0400)
committer
Rich 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
patch
|
blob
|
history
diff --git
a/ssl/statem/statem_dtls.c
b/ssl/statem/statem_dtls.c
index a3090ef4908179e6697752e4cffb5d31be38cd18..88969b1d5d7c8371377a31c0bfbde03d781ff4a3 100644
(file)
--- a/
ssl/statem/statem_dtls.c
+++ b/
ssl/statem/statem_dtls.c
@@
-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 ==