Skip to content

Commit

Permalink
dbus-daemon-proxy: add missing return statement
Browse files Browse the repository at this point in the history
The missing `return` statement leads to a `SIGABRT`.

Signed-off-by: Leif Middelschulte <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
Leif Middelschulte authored and kraj committed Jan 12, 2022
1 parent 92a4bc0 commit 77479e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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'"
Expand Down

0 comments on commit 77479e1

Please sign in to comment.