Skip to content

Commit

Permalink
NFC: Fixed skb leak in tm_send() nfc and hci ops implementations
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
  • Loading branch information
Eric Lapuyade authored and Samuel Ortiz committed Jan 9, 2013
1 parent 40d06d3 commit 924d4a0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions drivers/nfc/pn544/pn544.c
Original file line number Diff line number Diff line change
Expand Up @@ -675,11 +675,17 @@ static int pn544_hci_im_transceive(struct nfc_hci_dev *hdev,

static int pn544_hci_tm_send(struct nfc_hci_dev *hdev, struct sk_buff *skb)
{
int r;

/* Set default false for multiple information chaining */
*skb_push(skb, 1) = 0;

return nfc_hci_send_event(hdev, PN544_RF_READER_NFCIP1_TARGET_GATE,
PN544_HCI_EVT_SND_DATA, skb->data, skb->len);
r = nfc_hci_send_event(hdev, PN544_RF_READER_NFCIP1_TARGET_GATE,
PN544_HCI_EVT_SND_DATA, skb->data, skb->len);

kfree_skb(skb);

return r;
}

static int pn544_hci_check_presence(struct nfc_hci_dev *hdev,
Expand Down
6 changes: 4 additions & 2 deletions net/nfc/hci/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,10 @@ static int hci_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)

if (hdev->ops->tm_send)
return hdev->ops->tm_send(hdev, skb);
else
return -ENOTSUPP;

kfree_skb(skb);

return -ENOTSUPP;
}

static int hci_check_presence(struct nfc_dev *nfc_dev,
Expand Down

0 comments on commit 924d4a0

Please sign in to comment.