From: Ben Laurie Date: Mon, 19 May 2014 17:21:39 +0000 (+0100) Subject: Allow the maximum value. X-Git-Tag: OpenSSL_0_9_8zb~60 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7697d9b587a2ed5a33213641bf1030cdac62a9d9;p=oweals%2Fopenssl.git Allow the maximum value. (Backported as a result of PR#3377 reported by Rainer Jung ) --- diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c index b516b6f3e1..a419470649 100644 --- a/ssl/s3_pkt.c +++ b/ssl/s3_pkt.c @@ -534,7 +534,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;