summaryrefslogtreecommitdiffstats
path: root/audio/manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/manager.c')
-rw-r--r--audio/manager.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/audio/manager.c b/audio/manager.c
index 0a8b6478..75c44440 100644
--- a/audio/manager.c
+++ b/audio/manager.c
@@ -370,7 +370,8 @@ update:
dbus_message_append_args(reply, DBUS_TYPE_STRING,
&data->device->path,
DBUS_TYPE_INVALID);
- send_message_and_unref(connection, reply);
+ dbus_connection_send(connection, reply, NULL);
+ dbus_message_unref(reply);
}
done:
@@ -1569,7 +1570,9 @@ void manager_cancel_authorize(bdaddr_t *dba, const char *uuid,
DBUS_TYPE_STRING, &uuid,
DBUS_TYPE_INVALID);
- send_message_and_unref(connection, cancel);
+ dbus_connection_send(connection, cancel, NULL);
+
+ dbus_message_unref(cancel);
}
gboolean manager_authorize(const bdaddr_t *dba, const char *uuid,