fix a couple more uninitialized variables

This commit is contained in:
John Safranek
2014-03-02 18:38:12 -08:00
parent a50d2e1e21
commit ec7c79c12e
2 changed files with 6 additions and 8 deletions

View File

@@ -3276,9 +3276,7 @@ static void DecodeCertExtensions(DecodedCert* cert)
byte* input = cert->extensions;
int length;
word32 oid;
byte critical;
(void)critical;
byte critical = 0;
CYASSL_ENTER("DecodeCertExtensions");
@@ -3391,7 +3389,6 @@ static void DecodeCertExtensions(DecodedCert* cert)
}
idx += length;
}
(void)critical;
CYASSL_LEAVE("DecodeCertExtensions", 0);
return;