Fix some more MSVC size_t -> int warnings

This commit is contained in:
Manuel Pégourié-Gonnard 2018-03-06 11:33:06 +01:00
parent 8c661b90c7
commit 05c00ed8b2

View File

@ -1957,8 +1957,8 @@ static int x509_crt_check_parent( const mbedtls_x509_crt *child,
static mbedtls_x509_crt *x509_crt_find_parent_in( mbedtls_x509_crt *child,
mbedtls_x509_crt *candidates,
int top,
int path_cnt,
int self_cnt )
size_t path_cnt,
size_t self_cnt )
{
mbedtls_x509_crt *parent, *badtime_parent = NULL;
@ -1970,7 +1970,7 @@ static mbedtls_x509_crt *x509_crt_find_parent_in( mbedtls_x509_crt *child,
/* +1 because stored max_pathlen is 1 higher that the actual value */
if( parent->max_pathlen > 0 &&
parent->max_pathlen < 1 + path_cnt - self_cnt )
(size_t) parent->max_pathlen < 1 + path_cnt - self_cnt )
{
continue;
}