mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-03 12:44:45 +02:00
Fix potentially uninitialized variables in Dtls13SetRecordNumberKeys.
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user