diff options
author | Paul Moore <paul@paul-moore.com> | 2020-11-13 16:30:40 -0500 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-14 12:07:57 -0800 |
commit | 1ba86d4366e023d96df3dbe415eea7f1dc08c303 (patch) | |
tree | 2e6e4050fdab65664836a8ad52314d2caefe1cdd /net/netlabel/netlabel_unlabeled.c | |
parent | 057a10fa1f73d745c8e69aa54ab147715f5630ae (diff) | |
download | linux-stable-1ba86d4366e023d96df3dbe415eea7f1dc08c303.tar.gz linux-stable-1ba86d4366e023d96df3dbe415eea7f1dc08c303.tar.bz2 linux-stable-1ba86d4366e023d96df3dbe415eea7f1dc08c303.zip |
netlabel: fix an uninitialized warning in netlbl_unlabel_staticlist()
Static checking revealed that a previous fix to
netlbl_unlabel_staticlist() leaves a stack variable uninitialized,
this patches fixes that.
Fixes: 866358ec331f ("netlabel: fix our progress tracking in netlbl_unlabel_staticlist()")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Reviewed-by: James Morris <jamorris@linux.microsoft.com>
Link: https://lore.kernel.org/r/160530304068.15651.18355773009751195447.stgit@sifl
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/netlabel/netlabel_unlabeled.c')
-rw-r--r-- | net/netlabel/netlabel_unlabeled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netlabel/netlabel_unlabeled.c b/net/netlabel/netlabel_unlabeled.c index fc55c9116da0..ccb491642811 100644 --- a/net/netlabel/netlabel_unlabeled.c +++ b/net/netlabel/netlabel_unlabeled.c @@ -1167,7 +1167,7 @@ static int netlbl_unlabel_staticlist(struct sk_buff *skb, u32 skip_bkt = cb->args[0]; u32 skip_chain = cb->args[1]; u32 skip_addr4 = cb->args[2]; - u32 iter_bkt, iter_chain, iter_addr4 = 0, iter_addr6 = 0; + u32 iter_bkt, iter_chain = 0, iter_addr4 = 0, iter_addr6 = 0; struct netlbl_unlhsh_iface *iface; struct list_head *iter_list; struct netlbl_af4list *addr4; |