We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0792a4 commit e28f439Copy full SHA for e28f439
src/crypto/PSASessionKeystore.cpp
@@ -190,8 +190,8 @@ void PSASessionKeystore::DestroyKey(HkdfKeyHandle & key)
190
CHIP_ERROR PSASessionKeystore::PersistICDKey(Symmetric128BitsKeyHandle & key)
191
{
192
CHIP_ERROR err;
193
- psa_key_id_t newKeyId = PSA_KEY_ID_NULL;
194
- psa_key_attributes_t attrs;
+ psa_key_id_t newKeyId = PSA_KEY_ID_NULL;
+ psa_key_attributes_t attrs = PSA_KEY_ATTRIBUTES_INIT;
195
196
psa_get_key_attributes(key.As<psa_key_id_t>(), &attrs);
197
0 commit comments