Merge pull request #10508 from JacobBarthelmeh/static_analysis_3

devcrypto fixes, forcezero on memory after use, RX64 GetHash port fix, blake2 stor64 alignment
This commit is contained in:
Sean Parkinson
2026-05-28 09:24:56 +10:00
committed by GitHub
9 changed files with 54 additions and 18 deletions
+1 -1
View File
@@ -408,7 +408,7 @@ static int km_AesInitCommon(
if (! ctx->aes_decrypt_C) {
pr_err("%s: allocation of %zu bytes for decryption key failed.\n",
name, sizeof(*ctx->aes_decrypt_C));
err = -MEMORY_E;
err = -ENOMEM;
goto out;
}