diff options
Diffstat (limited to 'net/ipv4/igmp.c')
-rw-r--r-- | net/ipv4/igmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index aed0945c5..94d64999f 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c @@ -129,7 +129,7 @@ static void ip_ma_put(struct ip_mc_list *im) { if (atomic_dec_and_test(&im->refcnt)) { in_dev_put(im->interface); - kfree_s(im, sizeof(*im)); + kfree(im); } } |