mirror of https://github.com/wolfSSL/wolfssl.git
Minor Dilithium fix
Fix compilation in case caching is enabled. Signed-off-by: Tobias Frauenschläger <tobias.frauenschlaeger@oth-regensburg.de>pull/8494/head
parent
af4017132d
commit
3d4ec1464b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue