mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 17:56:17 +01:00
Bug 621905 – Assume a ref when doing async work
When asynchronously acquiring the DBus connection, assume a reference to the proxy object, to avoid destroying it in the middle of the operation. See https://bugzilla.gnome.org/show_bug.cgi?id=621905
This commit is contained in:
parent
d352ec2bf3
commit
b3cc28bc34
@ -1418,6 +1418,8 @@ get_connection_cb (GObject *source_object,
|
||||
|
||||
if (data->cancellable != NULL)
|
||||
g_object_unref (data->cancellable);
|
||||
if (data->proxy != NULL)
|
||||
g_object_unref (data->proxy);
|
||||
g_free (data);
|
||||
}
|
||||
|
||||
@ -1437,7 +1439,7 @@ async_initable_init_async (GAsyncInitable *initable,
|
||||
g_assert (proxy->priv->connection == NULL);
|
||||
|
||||
data = g_new0 (GetConnectionData, 1);
|
||||
data->proxy = proxy;
|
||||
data->proxy = g_object_ref (proxy);
|
||||
data->io_priority = io_priority;
|
||||
data->cancellable = cancellable != NULL ? g_object_ref (cancellable) : NULL;
|
||||
data->callback = callback;
|
||||
|
Loading…
Reference in New Issue
Block a user