1From 8e6d1f590b1cb437dc67c51298ef1722a7266d35 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 25 Jul 2017 18:37:58 -0700
4Subject: [PATCH] dbus-daemon-proxy: Return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
5 from master_filter_cb() if DBusConnection is null
6
7So it can be passed on to other handlers since this could
8not be handled here
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 dbus-daemon-proxy.c | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/dbus-daemon-proxy.c b/dbus-daemon-proxy.c
16index 009e4fd..f3f0d80 100644
17--- a/dbus-daemon-proxy.c
18+++ b/dbus-daemon-proxy.c
19@@ -115,7 +115,7 @@ master_filter_cb (DBusConnection *conn,
20   guint32 serial;
21
22   if (!dbus_conn)
23-    return;
24+    DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
25
26   if (verbose)
27     g_print ("New message from server: type='%d' path='%s' iface='%s'"
28--
292.13.3
30
31