diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-07-10 19:24:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-10 23:41:03 +0200 |
commit | 6fa4853328e3d78d092172fa54effb7e785d0a85 (patch) | |
tree | df7ec622c6f825f6470be62f49dfcaac2d020e71 /src/core/dbus-manager.c | |
parent | 376dd21dc0757e8a6d3f60d6d21bb802a90f1983 (diff) |
core: serialize/deserialize bus subscribers
Diffstat (limited to 'src/core/dbus-manager.c')
-rw-r--r-- | src/core/dbus-manager.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index fe2f749803..742f6bbd85 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -1057,17 +1057,9 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection, SELINUX_ACCESS_CHECK(connection, message, "status"); - s = BUS_CONNECTION_SUBSCRIBED(m, connection); - if (!s) { - s = set_new(string_hash_func, string_compare_func); - if (!s) - goto oom; - - if (!dbus_connection_set_data(connection, m->subscribed_data_slot, s, NULL)) { - set_free(s); - goto oom; - } - } + s = bus_acquire_subscribed(m, connection); + if (!s) + goto oom; client = strdup(bus_message_get_sender_with_fallback(message)); if (!client) |