mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-04-12 15:11:35 +02:00
Merge pull request #3900 from shelib01/fix_uninitialized_var
Fix uninitialized variables
This commit is contained in:
@@ -933,8 +933,8 @@ int tls_prf_generic( mbedtls_md_type_t md_type,
|
||||
{
|
||||
size_t nb;
|
||||
size_t i, j, k, md_len;
|
||||
unsigned char tmp[128];
|
||||
unsigned char h_i[MBEDTLS_MD_MAX_SIZE];
|
||||
unsigned char tmp[128] = {0};
|
||||
unsigned char h_i[MBEDTLS_MD_MAX_SIZE] = {0};
|
||||
mbedtls_md_handle_t md_info;
|
||||
mbedtls_md_context_t md_ctx;
|
||||
int ret;
|
||||
|
||||
Reference in New Issue
Block a user