mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-03 12:30:32 +01:00
nm-object: don't leak the properties on changed signals
https://bugzilla.redhat.com/show_bug.cgi?id=1314976
This commit is contained in:
parent
fd9eeca3be
commit
bb35883235
1 changed files with 3 additions and 1 deletions
|
|
@ -994,8 +994,10 @@ process_properties_changed (NMObject *self, GVariant *properties, gboolean synch
|
|||
return;
|
||||
|
||||
g_variant_iter_init (&iter, properties);
|
||||
while (g_variant_iter_next (&iter, "{&sv}", &name, &value))
|
||||
while (g_variant_iter_next (&iter, "{&sv}", &name, &value)) {
|
||||
handle_property_changed (self, name, value, synchronously);
|
||||
g_variant_unref (value);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue