mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 15:41:52 +02:00
selinux: fix a 0/NULL mistmatch in ad_net_init_from_iif()
Use a NULL instead of a zero to resolve a int/pointer mismatch.
Cc: Paolo Abeni <pabeni@redhat.com>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202307210332.4AqFZfzI-lkp@intel.com/
Fixes: dd51fcd42f ("selinux: introduce and use lsm_ad_net_init*() helpers")
Acked-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
55a0e73806
commit
3876043ad9
|
|
@ -246,7 +246,7 @@ static void ad_net_init_from_iif(struct common_audit_data *ad,
|
|||
struct lsm_network_audit *net,
|
||||
int ifindex, u16 family)
|
||||
{
|
||||
__ad_net_init(ad, net, ifindex, 0, family);
|
||||
__ad_net_init(ad, net, ifindex, NULL, family);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user