Commit e16b874e authored by Davide Caratti's avatar Davide Caratti Committed by Jakub Kicinski

mptcp: token: fix unititialized variable

gcc complains about use of uninitialized 'num'. Fix it by doing the first
assignment of 'num' when the variable is declared.

Fixes: 96d890da ("mptcp: add msk interations helper")
Signed-off-by: default avatarDavide Caratti <dcaratti@redhat.com>
Acked-by: default avatarPaolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/r/49e20da5d467a73414d4294a8bd35e2cb1befd49.1604308087.git.dcaratti@redhat.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 96216181
...@@ -291,7 +291,7 @@ struct mptcp_sock *mptcp_token_iter_next(const struct net *net, long *s_slot, ...@@ -291,7 +291,7 @@ struct mptcp_sock *mptcp_token_iter_next(const struct net *net, long *s_slot,
{ {
struct mptcp_sock *ret = NULL; struct mptcp_sock *ret = NULL;
struct hlist_nulls_node *pos; struct hlist_nulls_node *pos;
int slot, num; int slot, num = 0;
for (slot = *s_slot; slot <= token_mask; *s_num = 0, slot++) { for (slot = *s_slot; slot <= token_mask; *s_num = 0, slot++) {
struct token_bucket *bucket = &token_hash[slot]; struct token_bucket *bucket = &token_hash[slot];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment