mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
dbus-daemon-proxy: add missing return statement
The missing `return` statement leads to a `SIGABRT`. Signed-off-by: Leif Middelschulte <Leif.Middelschulte@klsmartin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
committed by
Khem Raj
parent
92a4bc0b2b
commit
77479e1c9b
+1
-1
@@ -21,7 +21,7 @@ index 009e4fd..f3f0d80 100644
|
||||
|
||||
if (!dbus_conn)
|
||||
- return;
|
||||
+ DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
|
||||
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
|
||||
|
||||
if (verbose)
|
||||
g_print ("New message from server: type='%d' path='%s' iface='%s'"
|
||||
|
||||
Reference in New Issue
Block a user