Minor Dilithium fix

Fix compilation in case caching is enabled.

Signed-off-by: Tobias Frauenschläger <tobias.frauenschlaeger@oth-regensburg.de>
pull/8494/head
Tobias Frauenschläger 2025-01-15 08:34:54 +01:00
parent af4017132d
commit 3d4ec1464b
1 changed files with 1 additions and 1 deletions

View File

@ -9276,7 +9276,7 @@ int wc_dilithium_import_public(const byte* in, word32 inLen, dilithium_key* key)
ret = MEMORY_E;
}
else {
XMEMSET(key->a, 0, params->aSz);
XMEMSET(key->a, 0, key->params->aSz);
}
}
#endif