linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] Bluetooth: Do not resolve name if entry was not found.
@ 2012-07-18 12:06 ramm
  2012-07-18 12:06 ` [PATCH 2/3] Bluetooth: Do not resolve next name if the " ramm
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: ramm @ 2012-07-18 12:06 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Ram Malovany

From: Ram Malovany <ramm@ti.com>

If entry wasn't found in the hci_inquiry_cache_lookup_resolve do not
resolve the name.

Signed-off-by: Ram Malovany <ramm@ti.com>
---
 net/bluetooth/hci_event.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 41ff978..2de521f 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -1365,6 +1365,9 @@ static bool hci_resolve_next_name(struct hci_dev *hdev)
 		return false;
 
 	e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_NEEDED);
+	if (!e)
+		return false;
+
 	if (hci_resolve_name(hdev, e) == 0) {
 		e->name_state = NAME_PENDING;
 		return true;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-07-18 12:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-18 12:06 [PATCH 1/3] Bluetooth: Do not resolve name if entry was not found ramm
2012-07-18 12:06 ` [PATCH 2/3] Bluetooth: Do not resolve next name if the " ramm
2012-07-18 12:06 ` [PATCH 3/3] Bluetooth: Set name_state to unknown when entry name is empty ramm
2012-07-18 12:39 ` [PATCH 1/3] Bluetooth: Do not resolve name if entry was not found Johan Hedberg
2012-07-18 12:43   ` Malovany, Ram

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).