Fixed possibly undefined variable warnings by initializing variables to 0.

This commit is contained in:
Benjamin Kier 2019-05-30 14:49:17 -04:00 committed by Gilles Peskine
parent 00c858cfee
commit 36050730c7
2 changed files with 2 additions and 2 deletions

View File

@ -541,7 +541,7 @@ int mbedtls_x509_crl_parse( mbedtls_x509_crl *chain, const unsigned char *buf, s
{
#if defined(MBEDTLS_PEM_PARSE_C)
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
size_t use_len;
size_t use_len = 0;
mbedtls_pem_context pem;
int is_pem = 0;

View File

@ -2538,7 +2538,7 @@ static int x509_crt_find_parent_in(
{
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
mbedtls_x509_crt *parent, *fallback_parent;
int signature_is_good, fallback_signature_is_good;
int signature_is_good = 0, fallback_signature_is_good;
#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_ECP_RESTARTABLE)
/* did we have something in progress? */