mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 07:00:05 +01:00
2006-12-18 Dan Williams <dcbw@redhat.com>
* gnome/libnm_glib/libnm_glib.c - Change dbus_connection_close() -> dbus_connection_unref() git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2186 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
6535b839e5
commit
ff1145b930
2 changed files with 11 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-12-18 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* gnome/libnm_glib/libnm_glib.c
|
||||
- Change dbus_connection_close() -> dbus_connection_unref()
|
||||
|
||||
2006-12-11 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* src/supplicant-manager/nm-supplicant-interface.c
|
||||
|
|
|
|||
|
|
@ -230,7 +230,8 @@ libnm_glib_dbus_filter (DBusConnection *connection,
|
|||
{
|
||||
/* Try to reactivate our connection to dbus on the next pass through the event loop */
|
||||
ctx->nm_state = LIBNM_NO_DBUS;
|
||||
dbus_connection_close (ctx->dbus_con);
|
||||
dbus_connection_unref (ctx->dbus_con);
|
||||
ctx->dbus_con = NULL;
|
||||
libnm_glib_schedule_dbus_watcher (ctx);
|
||||
}
|
||||
else if (dbus_message_is_signal (message, DBUS_INTERFACE_DBUS, "NameOwnerChanged"))
|
||||
|
|
@ -444,7 +445,10 @@ libnm_glib_ctx_free (libnm_glib_ctx *ctx)
|
|||
g_main_loop_unref (ctx->g_main_loop);
|
||||
|
||||
if (ctx->dbus_con)
|
||||
dbus_connection_close (ctx->dbus_con);
|
||||
{
|
||||
dbus_connection_unref (ctx->dbus_con);
|
||||
ctx->dbus_con = NULL;
|
||||
}
|
||||
|
||||
if (ctx->callbacks_lock)
|
||||
g_mutex_free (ctx->callbacks_lock);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue