Allow the maximum value.
authorBen Laurie <ben@links.org>
Mon, 19 May 2014 17:21:39 +0000 (18:21 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 12 Jun 2014 19:48:40 +0000 (20:48 +0100)
(Backported as a result of PR#3377 reported by Rainer Jung <rainer.jung@kippdata.de>)

ssl/s3_pkt.c

index 2f0304034770f07b2dfda8123c6d9f355ea08416..391e09d968bb2e9e5e70e5442e9770809241d04f 100644 (file)
@@ -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;