From: Ben Laurie Date: Mon, 19 May 2014 17:21:39 +0000 (+0100) Subject: Allow the maximum value. X-Git-Tag: OpenSSL_1_0_1h~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dac3654e2d89d43807e7b8e4b9da86ae1d33fe2b;p=oweals%2Fopenssl.git Allow the maximum value. --- diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c index ace10b671d..2e188af6a6 100644 --- a/ssl/s3_pkt.c +++ b/ssl/s3_pkt.c @@ -584,7 +584,7 @@ int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len) int i,tot; s->rwstate=SSL_NOTHING; - OPENSSL_assert(s->s3->wnum < INT_MAX); + OPENSSL_assert(s->s3->wnum <= INT_MAX); tot=s->s3->wnum; s->s3->wnum=0;