1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Fix MSVC warning

We know the length of the ALPN string is always less than 255, so the cast to
uint8_t is safe.
This commit is contained in:
Manuel Pégourié-Gonnard
2019-07-24 00:58:27 +02:00
committed by Jarno Lamsa
parent 9a96fd7ac3
commit f041f4e19c

View File

@ -11553,7 +11553,7 @@ int mbedtls_ssl_context_save( mbedtls_ssl_context *ssl,
#if defined(MBEDTLS_SSL_ALPN)
{
const uint8_t alpn_len = ssl->alpn_chosen
? strlen( ssl->alpn_chosen )
? (uint8_t) strlen( ssl->alpn_chosen )
: 0;
used += 1 + alpn_len;