Add variable initialization to large SSL TLS function.
change triggered by false positive reported by Cppcheck 1.89. Signed-off-by: sander-visser <github@visser.se>
This commit is contained in:
parent
5435451a1a
commit
3888b03e31
1 changed files with 1 additions and 1 deletions
|
@ -863,7 +863,7 @@ static int ssl_populate_transform( mbedtls_ssl_transform *transform,
|
|||
unsigned char *key2;
|
||||
unsigned char *mac_enc;
|
||||
unsigned char *mac_dec;
|
||||
size_t mac_key_len;
|
||||
size_t mac_key_len = 0;
|
||||
size_t iv_copy_len;
|
||||
unsigned keylen;
|
||||
const mbedtls_ssl_ciphersuite_t *ciphersuite_info;
|
||||
|
|
Loading…
Reference in a new issue