From: cedral Date: Wed, 4 Apr 2018 17:12:23 +0000 (+0200) Subject: fix build error in 32 bit debug build X-Git-Tag: OpenSSL_1_1_0i~207 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bd90e98e149532aac345080905603f98af3d3350;p=oweals%2Fopenssl.git fix build error in 32 bit debug build Reviewed-by: Rich Salz Reviewed-by: Bernd Edlinger (Merged from https://github.com/openssl/openssl/pull/5861) --- diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index e5b4085c20..3df3f54c85 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -1278,11 +1278,12 @@ void SSL_trace(int write_p, int version, int content_type, int hvers; /* avoid overlapping with length at the end of buffer */ - if (msglen < (SSL_IS_DTLS(ssl) ? 13 : 5)) { - BIO_puts(bio, write_p ? "Sent" : "Received"); - ssl_print_hex(bio, 0, " too short message", msg, msglen); - break; - } + if (msglen < (size_t)(SSL_IS_DTLS(ssl) ? + DTLS1_RT_HEADER_LENGTH : SSL3_RT_HEADER_LENGTH)) { + BIO_puts(bio, write_p ? "Sent" : "Received"); + ssl_print_hex(bio, 0, " too short message", msg, msglen); + break; + } hvers = msg[1] << 8 | msg[2]; BIO_puts(bio, write_p ? "Sent" : "Received"); BIO_printf(bio, " Record\nHeader:\n Version = %s (0x%x)\n",