]> www.infradead.org Git - users/dwmw2/linux.git/commit
kunit: Fix potential null dereference in kunit_device_driver_test()
authorZichen Xie <zichenxie0106@gmail.com>
Fri, 15 Nov 2024 05:43:36 +0000 (23:43 -0600)
committerShuah Khan <skhan@linuxfoundation.org>
Tue, 19 Nov 2024 22:17:51 +0000 (15:17 -0700)
commit435c20eed572a95709b1536ff78832836b2f91b1
tree968a1bb24e0f22e21e59b07529fa55824eb381a6
parentaadf9cb1f0864bff45e3a3e5590af97097dd7317
kunit: Fix potential null dereference in kunit_device_driver_test()

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: d03c720e03bd ("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>
lib/kunit/kunit-test.c