Allow the maximum value.

(Backported as a result of PR#3377 reported by Rainer Jung <rainer.jung@kippdata.de>)
This commit is contained in:
Ben Laurie 2014-05-19 18:21:39 +01:00 committed by Matt Caswell
parent ead6774804
commit d663f506dc

View 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;