Commit 2622e2a0 authored by Joe Perches's avatar Joe Perches Committed by Samuel Ortiz

NFC: nci: hci: Fix releasing uninitialized skbs

Several of these goto exit; uses should be direct returns
as skb is not yet initialized by nci_hci_get_param().

Miscellanea:

o Use !memcmp instead of memcmp() == 0
o Remove unnecessary goto from if () {... goto exit;} else {...} exit:
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 8a2151c5
...@@ -639,22 +639,19 @@ int nci_hci_dev_session_init(struct nci_dev *ndev) ...@@ -639,22 +639,19 @@ int nci_hci_dev_session_init(struct nci_dev *ndev)
ndev->hci_dev->init_data.gates[0].gate, ndev->hci_dev->init_data.gates[0].gate,
ndev->hci_dev->init_data.gates[0].pipe); ndev->hci_dev->init_data.gates[0].pipe);
if (r < 0) if (r < 0)
goto exit; return r;
r = nci_hci_get_param(ndev, NCI_HCI_ADMIN_GATE, r = nci_hci_get_param(ndev, NCI_HCI_ADMIN_GATE,
NCI_HCI_ADMIN_PARAM_SESSION_IDENTITY, &skb); NCI_HCI_ADMIN_PARAM_SESSION_IDENTITY, &skb);
if (r < 0) if (r < 0)
goto exit; return r;
if (skb->len && if (skb->len &&
skb->len == strlen(ndev->hci_dev->init_data.session_id) && skb->len == strlen(ndev->hci_dev->init_data.session_id) &&
memcmp(ndev->hci_dev->init_data.session_id, !memcmp(ndev->hci_dev->init_data.session_id, skb->data, skb->len) &&
skb->data, skb->len) == 0 &&
ndev->ops->hci_load_session) { ndev->ops->hci_load_session) {
/* Restore gate<->pipe table from some proprietary location. */ /* Restore gate<->pipe table from some proprietary location. */
r = ndev->ops->hci_load_session(ndev); r = ndev->ops->hci_load_session(ndev);
if (r < 0)
goto exit;
} else { } else {
r = nci_hci_dev_connect_gates(ndev, r = nci_hci_dev_connect_gates(ndev,
ndev->hci_dev->init_data.gate_count, ndev->hci_dev->init_data.gate_count,
...@@ -667,8 +664,6 @@ int nci_hci_dev_session_init(struct nci_dev *ndev) ...@@ -667,8 +664,6 @@ int nci_hci_dev_session_init(struct nci_dev *ndev)
ndev->hci_dev->init_data.session_id, ndev->hci_dev->init_data.session_id,
strlen(ndev->hci_dev->init_data.session_id)); strlen(ndev->hci_dev->init_data.session_id));
} }
if (r == 0)
goto exit;
exit: exit:
kfree_skb(skb); kfree_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment