mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-10-22 23:13:01 +02:00
kunit: Fix potential null dereference in kunit_device_driver_test()
commit435c20eed5
upstream. kunit_kzalloc() may return a NULL pointer, dereferencing it without NULL check may lead to NULL dereference. Add a NULL check for test_state. Link: https://lore.kernel.org/r/20241115054335.21673-1-zichenxie0106@gmail.com Fixes:d03c720e03
("kunit: Add APIs for managing devices") Signed-off-by: Zichen Xie <zichenxie0106@gmail.com> Cc: stable@vger.kernel.org Reviewed-by: David Gow <davidgow@google.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b544be3744
commit
5d28fac593
|
@ -805,6 +805,8 @@ static void kunit_device_driver_test(struct kunit *test)
|
|||
struct device *test_device;
|
||||
struct driver_test_state *test_state = kunit_kzalloc(test, sizeof(*test_state), GFP_KERNEL);
|
||||
|
||||
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, test_state);
|
||||
|
||||
test->priv = test_state;
|
||||
test_driver = kunit_driver_create(test, "my_driver");
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user