fixc CID #405232 - init array

This commit is contained in:
iceman1001 2023-03-04 20:12:00 +01:00
parent 8f20eed914
commit b3652c28be

View file

@ -702,7 +702,7 @@ static int CmdHFFelicaAuthentication1(const char *Cmd) {
PrintAndLogEx(INFO, "Reader challenge (unencrypted): %s", sprint_hex(nonce, 8));
// Create M1c Challenge with 3DES (3 Keys = 24, 2 Keys = 16)
uint8_t master_key[24];
uint8_t master_key[24] = {0};
mbedtls_des3_context des3_ctx;
mbedtls_des3_init(&des3_ctx);