aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/bnep
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-10-15 17:31:05 +0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-10-15 23:14:32 -0700
commitb2cfcd75df77b80d9cc3fa84190a350dfa79eb93 (patch)
tree661abc82652a6cc7ff665861d98d127e2152affc /net/bluetooth/bnep
parent[Bluetooth] Disconnect HID interrupt channel first (diff)
downloadlinux-dev-b2cfcd75df77b80d9cc3fa84190a350dfa79eb93.tar.xz
linux-dev-b2cfcd75df77b80d9cc3fa84190a350dfa79eb93.zip
[Bluetooth] Fix reference count when connection lookup fails
When the connection lookup for the device structure fails, the reference count for the HCI device needs to be decremented. Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/bnep')
-rw-r--r--net/bluetooth/bnep/core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c
index 2312d050eeed..4d3424c2421c 100644
--- a/net/bluetooth/bnep/core.c
+++ b/net/bluetooth/bnep/core.c
@@ -528,12 +528,10 @@ static struct device *bnep_get_device(struct bnep_session *session)
return NULL;
conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst);
- if (!conn)
- return NULL;
hci_dev_put(hdev);
- return &conn->dev;
+ return conn ? &conn->dev : NULL;
}
int bnep_add_connection(struct bnep_connadd_req *req, struct socket *sock)