mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-10 23:54:40 -05:00
selftests/bpf: Fix warning comparing pointer to 0
Fix the following coccicheck warning: ./tools/testing/selftests/bpf/progs/test_global_func10.c:17:12-13: WARNING comparing pointer to 0. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/1615357366-97612-1-git-send-email-jiapeng.chong@linux.alibaba.com
This commit is contained in:
committed by
Andrii Nakryiko
parent
c1acda9807
commit
04ea63e34a
@@ -14,7 +14,7 @@ struct Big {
|
||||
|
||||
__noinline int foo(const struct Big *big)
|
||||
{
|
||||
if (big == 0)
|
||||
if (!big)
|
||||
return 0;
|
||||
|
||||
return bpf_get_prandom_u32() < big->y;
|
||||
|
||||
Reference in New Issue
Block a user