mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
ipv6: remove redundant null pointer check before kfree_skb
kfree_skb has taken the null pointer into account. hence it is safe to remove the redundant null pointer check before kfree_skb. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
673eed0c18
commit
f2a2f2166a
@ -468,12 +468,10 @@ void inet6_destroy_sock(struct sock *sk)
|
||||
/* Release rx options */
|
||||
|
||||
skb = xchg(&np->pktoptions, NULL);
|
||||
if (skb)
|
||||
kfree_skb(skb);
|
||||
kfree_skb(skb);
|
||||
|
||||
skb = xchg(&np->rxpmtu, NULL);
|
||||
if (skb)
|
||||
kfree_skb(skb);
|
||||
kfree_skb(skb);
|
||||
|
||||
/* Free flowlabels */
|
||||
fl6_free_socklist(sk);
|
||||
|
Loading…
Reference in New Issue
Block a user