]> git.baikalelectronics.ru Git - kernel.git/commit
KEYS: trusted: Fix missing null return from kzalloc call
authorColin Ian King <colin.king@canonical.com>
Mon, 12 Apr 2021 16:01:01 +0000 (17:01 +0100)
committerJarkko Sakkinen <jarkko@kernel.org>
Wed, 14 Apr 2021 13:30:31 +0000 (16:30 +0300)
commit564a8456f33aa2c3b1b24dde238b65bf34c33e01
treeca25ca1f1a11057bcdf5937e47f15875fd1da6af
parent9ac163dc8f97b6540f57af2017f6718878b48b27
KEYS: trusted: Fix missing null return from kzalloc call

The kzalloc call can return null with the GFP_KERNEL flag so
add a null check and exit via a new error exit label. Use the
same exit error label for another error path too.

Addresses-Coverity: ("Dereference null return value")
Fixes: 830027e2cb55 ("KEYS: trusted: Add generic trusted keys framework")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
security/keys/trusted-keys/trusted_core.c