diff options
| author | Leif Middelschulte <Leif.Middelschulte@klsmartin.com> | 2022-01-11 15:36:48 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-01-11 17:51:55 -0800 |
| commit | 77479e1c9b7bffb6ad89ae68f80605ad1c65ea75 (patch) | |
| tree | c5090d370a8628a3f101b0b0dd88bf9f8688074a | |
| parent | 92a4bc0b2bd955f9e61094c223e3c3e57addb789 (diff) | |
| download | meta-openembedded-77479e1c9b7bffb6ad89ae68f80605ad1c65ea75.tar.gz | |
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>
| -rw-r--r-- | meta-oe/recipes-core/dbus/dbus-daemon-proxy/0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-core/dbus/dbus-daemon-proxy/0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch b/meta-oe/recipes-core/dbus/dbus-daemon-proxy/0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch index 2c4ca057f2..1c2fc3813f 100644 --- a/meta-oe/recipes-core/dbus/dbus-daemon-proxy/0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch +++ b/meta-oe/recipes-core/dbus/dbus-daemon-proxy/0001-dbus-daemon-proxy-Return-DBUS_HANDLER_RESULT_NOT_YET.patch | |||
| @@ -21,7 +21,7 @@ index 009e4fd..f3f0d80 100644 | |||
| 21 | 21 | ||
| 22 | if (!dbus_conn) | 22 | if (!dbus_conn) |
| 23 | - return; | 23 | - return; |
| 24 | + DBUS_HANDLER_RESULT_NOT_YET_HANDLED; | 24 | + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; |
| 25 | 25 | ||
| 26 | if (verbose) | 26 | if (verbose) |
| 27 | g_print ("New message from server: type='%d' path='%s' iface='%s'" | 27 | g_print ("New message from server: type='%d' path='%s' iface='%s'" |
