From e0d41de82231ae7a613c640b20c20ec88902ce0a Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Tue, 22 Nov 2022 15:47:27 +0100 Subject: [PATCH] test: psa_pake: add missing initialization in ecjpake_setup() Signed-off-by: Valerio Setti --- tests/suites/test_suite_psa_crypto_pake.function | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/suites/test_suite_psa_crypto_pake.function b/tests/suites/test_suite_psa_crypto_pake.function index 77e8ed694..13c9bcb07 100644 --- a/tests/suites/test_suite_psa_crypto_pake.function +++ b/tests/suites/test_suite_psa_crypto_pake.function @@ -566,7 +566,8 @@ void ecjpake_setup( int alg_arg, int key_type_pw_arg, int key_usage_pw_arg, size_t output_len = 0; const uint8_t unsupp_id[] = "abcd"; const uint8_t password[] = "abcd"; - psa_key_derivation_operation_t key_derivation; + psa_key_derivation_operation_t key_derivation = + PSA_KEY_DERIVATION_OPERATION_INIT; PSA_INIT( );