initialize explicitOctet to 0 in pwc_PKCS7_DecodeEnvelopedData()

pull/2829/head
Chris Conlon 2020-03-02 09:13:11 -07:00
parent debb792690
commit d8eeefb4b7
1 changed files with 1 additions and 1 deletions

View File

@ -10057,7 +10057,7 @@ WOLFSSL_API int wc_PKCS7_DecodeEnvelopedData(PKCS7* pkcs7, byte* in,
int encryptedContentSz = 0;
byte padLen;
byte* encryptedContent = NULL;
int explicitOctet;
int explicitOctet = 0;
word32 localIdx;
byte tag;