* [PATCH] crypto: x509 - Replace kmalloc() + NUL-termination with kzalloc()
@ 2025-03-17 10:48 Thorsten Blum
2025-04-07 3:19 ` Herbert Xu
0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2025-03-17 10:48 UTC (permalink / raw)
To: David Howells, Herbert Xu, David S. Miller
Cc: Thorsten Blum, keyrings, linux-crypto, linux-kernel
Use kzalloc() to zero out the one-element array instead of using
kmalloc() followed by a manual NUL-termination.
No functional changes intended.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
crypto/asymmetric_keys/x509_cert_parser.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/crypto/asymmetric_keys/x509_cert_parser.c b/crypto/asymmetric_keys/x509_cert_parser.c
index ee2fdab42334..2ffe4ae90bea 100644
--- a/crypto/asymmetric_keys/x509_cert_parser.c
+++ b/crypto/asymmetric_keys/x509_cert_parser.c
@@ -372,10 +372,9 @@ static int x509_fabricate_name(struct x509_parse_context *ctx, size_t hdrlen,
/* Empty name string if no material */
if (!ctx->cn_size && !ctx->o_size && !ctx->email_size) {
- buffer = kmalloc(1, GFP_KERNEL);
+ buffer = kzalloc(1, GFP_KERNEL);
if (!buffer)
return -ENOMEM;
- buffer[0] = 0;
goto done;
}
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] crypto: x509 - Replace kmalloc() + NUL-termination with kzalloc()
2025-03-17 10:48 [PATCH] crypto: x509 - Replace kmalloc() + NUL-termination with kzalloc() Thorsten Blum
@ 2025-04-07 3:19 ` Herbert Xu
0 siblings, 0 replies; 2+ messages in thread
From: Herbert Xu @ 2025-04-07 3:19 UTC (permalink / raw)
To: Thorsten Blum
Cc: David Howells, David S. Miller, keyrings, linux-crypto,
linux-kernel
On Mon, Mar 17, 2025 at 11:48:41AM +0100, Thorsten Blum wrote:
> Use kzalloc() to zero out the one-element array instead of using
> kmalloc() followed by a manual NUL-termination.
>
> No functional changes intended.
>
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
> crypto/asymmetric_keys/x509_cert_parser.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
We have a new maintainer for crypto/asymmetric_keys, please make
sure he is CCed on these patches:
ASYMMETRIC KEYS
M: David Howells <dhowells@redhat.com>
M: Lukas Wunner <lukas@wunner.de>
M: Ignat Korchagin <ignat@cloudflare.com>
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-07 3:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-17 10:48 [PATCH] crypto: x509 - Replace kmalloc() + NUL-termination with kzalloc() Thorsten Blum
2025-04-07 3:19 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox