mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 08:01:59 +00:00
NFC: use kfree_skb() for sk_buffs
This is a struct sk_buff pointer and it should be freed with kfree_skb() instead of kfree(). Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
341ee4349f
commit
5b68a7ca32
@ -954,7 +954,7 @@ void nfc_llcp_unregister_device(struct nfc_dev *dev)
|
||||
skb_queue_purge(&local->tx_queue);
|
||||
destroy_workqueue(local->tx_wq);
|
||||
destroy_workqueue(local->rx_wq);
|
||||
kfree(local->rx_pending);
|
||||
kfree_skb(local->rx_pending);
|
||||
kfree(local);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user