Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c5f0aa5 authored by Kees Cook's avatar Kees Cook Committed by Herbert Xu
Browse files

crypto: jitterentropy - use safe format string parameters



Since the API for jent_panic() does not include format string parameters,
adjust the call to panic() to use a literal string to avoid any future
callers from leaking format strings into the panic message.

Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Acked-by: default avatarStephan Mueller <smueller@chronox.de>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent ec0d6fa3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ int jent_fips_enabled(void)

void jent_panic(char *s)
{
	panic(s);
	panic("%s", s);
}

void jent_memcpy(void *dest, const void *src, unsigned int n)