mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
GDBusProxy: on_properties_changed initialize some variables
This avoids calling g_variant_unref and g_free on uninitialized memory if PropertiesChanged is received in the creating thread's thread-default main context's thread, at the same time as releasing the last ref in another thread. This would result in "goto out" before the variables freed after that label had been initialized to NULL. Based on a patch by Simon McVittie, bug 656282
This commit is contained in:
parent
655299a057
commit
ae496a52a9
@ -928,6 +928,9 @@ on_properties_changed (GDBusConnection *connection,
|
||||
GVariant *value;
|
||||
guint n;
|
||||
|
||||
changed_properties = NULL;
|
||||
invalidated_properties = NULL;
|
||||
|
||||
G_LOCK (signal_subscription_lock);
|
||||
proxy = data->proxy;
|
||||
if (proxy == NULL)
|
||||
@ -941,9 +944,6 @@ on_properties_changed (GDBusConnection *connection,
|
||||
G_UNLOCK (signal_subscription_lock);
|
||||
}
|
||||
|
||||
changed_properties = NULL;
|
||||
invalidated_properties = NULL;
|
||||
|
||||
if (!proxy->priv->initialized)
|
||||
goto out;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user