diff options
author | Li Wei <[email protected]> | 2012-03-07 14:58:07 +0000 |
---|---|---|
committer | David S. Miller <[email protected]> | 2012-03-11 15:57:11 -0700 |
commit | 8b2aaedee4eaa94e816144ed54b9707b96be29f8 (patch) | |
tree | 0fd46f2b7fdfd5aacda2c35470048dfe2fb00dab /net/lapb/lapb_subr.c | |
parent | 7fbc415d7bd0ff0224eea53c678fa9f13f646b4f (diff) |
ipv6: Fix Smatch warning.
With commit d6ddef9e641d(IPv6: Fix not join all-router mcast group
when forwarding set.) I check 'dev' after it's dereference that
leads to a Smatch complaint:
net/ipv6/addrconf.c:438 ipv6_add_dev()
warn: variable dereferenced before check 'dev' (see line 432)
net/ipv6/addrconf.c
431 /* protected by rtnl_lock */
432 rcu_assign_pointer(dev->ip6_ptr, ndev);
^^^^^^^^^^^^
Old dereference.
433
434 /* Join all-node multicast group */
435 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
436
437 /* Join all-router multicast group if forwarding is set
*/
438 if (ndev->cnf.forwarding && dev && (dev->flags &
IFF_MULTICAST))
^^^
Remove the check to avoid the complaint as 'dev' can't be NULL.
Reported-by: Dan Carpenter <[email protected]>
Signed-off-by: Li Wei <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/lapb/lapb_subr.c')
0 files changed, 0 insertions, 0 deletions