Minor Dilithium fix

Fix compilation in case caching is enabled.

Signed-off-by: Tobias Frauenschläger <tobias.frauenschlaeger@oth-regensburg.de>
This commit is contained in:
Tobias Frauenschläger
2025-01-15 08:34:54 +01:00
parent af4017132d
commit 3d4ec1464b

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