wolfcrypt/src/wc_pkcs11.c: fixes for cppcheck complaints: uninitvar

This commit is contained in:
Daniel Pouzzner
2022-01-08 00:32:48 -06:00
parent 71b0b89e95
commit 8aa1100508

View File

@ -2041,7 +2041,7 @@ static int Pkcs11GetEccPublicKey(ecc_key* key, Pkcs11Session* session,
word32 i = 0;
int curveIdx;
unsigned char* point = NULL;
int pointSz;
int pointSz = 0;
byte tag;
CK_RV rv;
CK_ATTRIBUTE tmpl[] = {