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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue