diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-03 20:10:03 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-07 20:58:56 -0500 |
commit | e80e28b6b67ecc25fa89c9129a5f70de6389b2a6 (patch) | |
tree | 69f66c7089a57baec38d2275ba6757d15582c1ba /net/ipv6/mcast.c | |
parent | bee14e1f8ae2d5fd3f324e0c8562f791537160b2 (diff) |
[PATCH] net/ipv6/mcast.c NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/ipv6/mcast.c')
-rw-r--r-- | net/ipv6/mcast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 4420948a1bfe..807c021d64a2 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c | |||
@@ -1978,7 +1978,7 @@ static int sf_setstate(struct ifmcaddr6 *pmc) | |||
1978 | new_in = psf->sf_count[MCAST_INCLUDE] != 0; | 1978 | new_in = psf->sf_count[MCAST_INCLUDE] != 0; |
1979 | if (new_in) { | 1979 | if (new_in) { |
1980 | if (!psf->sf_oldin) { | 1980 | if (!psf->sf_oldin) { |
1981 | struct ip6_sf_list *prev = 0; | 1981 | struct ip6_sf_list *prev = NULL; |
1982 | 1982 | ||
1983 | for (dpsf=pmc->mca_tomb; dpsf; | 1983 | for (dpsf=pmc->mca_tomb; dpsf; |
1984 | dpsf=dpsf->sf_next) { | 1984 | dpsf=dpsf->sf_next) { |