lwtunnel: use kfree_skb() instead of vanilla kfree()

kfree_skb() is correct here.

Fixes: ffce41962e ('lwtunnel: support dst output redirect function')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Dan Carpenter 2015-07-27 11:07:47 +03:00 committed by David S. Miller
parent 99d7662a04
commit e11f40b935
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ int __lwtunnel_output(struct sock *sk, struct sk_buff *skb,
return ret;
drop:
kfree(skb);
kfree_skb(skb);
return ret;
}