diff mbox series

[BlueZ,1/3] adapter: Do not remove client watch directly if discovery fails

Message ID 20200608220153.880790-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,1/3] adapter: Do not remove client watch directly if discovery fails | expand

Commit Message

Luiz Augusto von Dentz June 8, 2020, 10:01 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

Client watch is used for both discovery and it filters so in case the
client has set the later the watch shall be perserved.
---
 src/adapter.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/src/adapter.c b/src/adapter.c
index 76acfea70..bf51b120b 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -1651,7 +1651,6 @@  fail:
 	if (client->msg) {
 		reply = btd_error_busy(client->msg);
 		g_dbus_send_message(dbus_conn, reply);
-		g_dbus_remove_watch(dbus_conn, client->watch);
 		discovery_remove(client, false);
 		return;
 	}