Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91744f65 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

netlink: remove some pointless conditionals before kfree_skb()



Remove some pointless conditionals before kfree_skb().

Signed-off-by: default avatarWei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 40d44446
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1049,7 +1049,6 @@ int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid,

	netlink_unlock_table();

	if (info.skb2)
	kfree_skb(info.skb2);

	if (info.delivery_failure)
@@ -1542,7 +1541,6 @@ EXPORT_SYMBOL(netlink_set_nonroot);

static void netlink_destroy_callback(struct netlink_callback *cb)
{
	if (cb->skb)
	kfree_skb(cb->skb);
	kfree(cb);
}