mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 20:30:57 +07:00
crypto: ux500 - replace kmalloc and then memcpy with kmemdup
Signed-off-by: Mihnea Dobrescu-Balaur <mihneadb@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
5de8875281
commit
1643a35fea
@ -1368,14 +1368,12 @@ static int hash_setkey(struct crypto_ahash *tfm,
|
||||
/**
|
||||
* Freed in final.
|
||||
*/
|
||||
ctx->key = kmalloc(keylen, GFP_KERNEL);
|
||||
ctx->key = kmemdup(key, keylen, GFP_KERNEL);
|
||||
if (!ctx->key) {
|
||||
pr_err(DEV_DBG_NAME " [%s] Failed to allocate ctx->key "
|
||||
"for %d\n", __func__, alg);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
memcpy(ctx->key, key, keylen);
|
||||
ctx->keylen = keylen;
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user