From: Lennart Poettering Date: Thu, 8 Apr 2010 02:43:47 +0000 (+0200) Subject: dbus: make sure dbus doesn't call us anymore when we unref'ed it X-Git-Tag: 0.git+20100605+dfd8ee-1~193 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90d3f30b6f4272d89177b7e955d11f995e5d3cd4;p=systemd dbus: make sure dbus doesn't call us anymore when we unref'ed it --- diff --git a/dbus.c b/dbus.c index ab32b9f8..5d914e94 100644 --- a/dbus.c +++ b/dbus.c @@ -614,6 +614,7 @@ void bus_done_api(Manager *m) { m->system_bus = NULL; dbus_connection_close(m->api_bus); + dbus_connection_set_dispatch_status_function(m->api_bus, NULL, NULL, NULL); dbus_connection_unref(m->api_bus); m->api_bus = NULL; @@ -638,6 +639,7 @@ void bus_done_system(Manager *m) { if (m->system_bus) { dbus_connection_close(m->system_bus); + dbus_connection_set_dispatch_status_function(m->system_bus, NULL, NULL, NULL); dbus_connection_unref(m->system_bus); m->system_bus = NULL; }