Commit 1643a35f authored by Mihnea Dobrescu-Balaur's avatar Mihnea Dobrescu-Balaur Committed by Herbert Xu

crypto: ux500 - replace kmalloc and then memcpy with kmemdup

Signed-off-by: default avatarMihnea Dobrescu-Balaur <mihneadb@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 5de88752
...@@ -1368,14 +1368,12 @@ static int hash_setkey(struct crypto_ahash *tfm, ...@@ -1368,14 +1368,12 @@ static int hash_setkey(struct crypto_ahash *tfm,
/** /**
* Freed in final. * Freed in final.
*/ */
ctx->key = kmalloc(keylen, GFP_KERNEL); ctx->key = kmemdup(key, keylen, GFP_KERNEL);
if (!ctx->key) { if (!ctx->key) {
pr_err(DEV_DBG_NAME " [%s] Failed to allocate ctx->key " pr_err(DEV_DBG_NAME " [%s] Failed to allocate ctx->key "
"for %d\n", __func__, alg); "for %d\n", __func__, alg);
return -ENOMEM; return -ENOMEM;
} }
memcpy(ctx->key, key, keylen);
ctx->keylen = keylen; ctx->keylen = keylen;
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment