From cda1e477928e15a85e26c66b48fb0ce8a282d47d Mon Sep 17 00:00:00 2001 From: Bob Beck Date: Thu, 24 Apr 2014 06:02:59 +0000 Subject: A fantastic way to make a large unsigned number is to assign a small signed one to it.. Some people on OpenSSL's list noticed - http://marc.info/?l=openssl-dev&m=139809485525663&w=2 This should fix that, and make sure we don't try to write out insane amounts of stuff. ok miod@ tedu@ --- lib/libssl/src/ssl/s3_pkt.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/libssl/src/ssl/s3_pkt.c b/lib/libssl/src/ssl/s3_pkt.c index 5ef25a4059f..2a88b148521 100644 --- a/lib/libssl/src/ssl/s3_pkt.c +++ b/lib/libssl/src/ssl/s3_pkt.c @@ -564,6 +564,8 @@ ssl3_write_bytes(SSL *s, int type, const void *buf_, int len) } } + if (len < tot) + len = tot; n = (len - tot); for (;;) { if (n > s->max_send_fragment) -- cgit v1.2.3