mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-07 06:05:34 +00:00
Merge pull request #3900 from shelib01/fix_uninitialized_var
Fix uninitialized variables
This commit is contained in:
commit
9e27b901b7
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue