Skip to content

Commit e37082e

Browse files
authored
Merge pull request #8978 from gojimmypi/pr-init-var
Initialize Dilithium keyTypeTemp and keySizeTemp
2 parents 703bd6d + ebeb95e commit e37082e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ssl_load.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,8 @@ static int ProcessBufferTryDecodeDilithium(WOLFSSL_CTX* ctx, WOLFSSL* ssl,
952952
word32 idx;
953953
dilithium_key* key;
954954
int keyFormatTemp = 0;
955-
int keyTypeTemp;
956-
int keySizeTemp;
955+
int keyTypeTemp = 0;
956+
int keySizeTemp = 0;
957957

958958
/* Allocate a Dilithium key to parse into. */
959959
key = (dilithium_key*)XMALLOC(sizeof(dilithium_key), heap,

0 commit comments

Comments
 (0)