mirror of https://github.com/wolfSSL/wolfssl.git
Fix potentially uninitialized variables in Dtls13SetRecordNumberKeys.
parent
c8f5bd3d61
commit
44a49aeefa
|
@ -1969,7 +1969,7 @@ int Dtls13SetRecordNumberKeys(WOLFSSL* ssl, enum encrypt_side side)
|
|||
{
|
||||
RecordNumberCiphers* enc = NULL;
|
||||
RecordNumberCiphers* dec = NULL;
|
||||
byte *encKey, *decKey;
|
||||
byte *encKey = NULL, *decKey = NULL;
|
||||
int ret;
|
||||
|
||||
if (ssl == NULL) {
|
||||
|
|
Loading…
Reference in New Issue