mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
crypto: ccp - Silence strncpy warning
This patch kills an strncpy by using strscpy instead. The name would be silently truncated if it is too long. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Acked-by: John Allen <john.allen@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
8832cfd3a0
commit
2c2e18369f
@ -19,6 +19,7 @@
|
||||
#include <crypto/internal/hash.h>
|
||||
#include <crypto/sha.h>
|
||||
#include <crypto/scatterwalk.h>
|
||||
#include <linux/string.h>
|
||||
|
||||
#include "ccp-crypto.h"
|
||||
|
||||
@ -424,7 +425,7 @@ static int ccp_register_hmac_alg(struct list_head *head,
|
||||
*ccp_alg = *base_alg;
|
||||
INIT_LIST_HEAD(&ccp_alg->entry);
|
||||
|
||||
strncpy(ccp_alg->child_alg, def->name, CRYPTO_MAX_ALG_NAME);
|
||||
strscpy(ccp_alg->child_alg, def->name, CRYPTO_MAX_ALG_NAME);
|
||||
|
||||
alg = &ccp_alg->alg;
|
||||
alg->setkey = ccp_sha_setkey;
|
||||
|
Loading…
Reference in New Issue
Block a user