mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-09 04:10:18 +01:00
libnm-core: fix a leak in process_properties_changed()
This commit is contained in:
parent
171c970beb
commit
d51976843d
1 changed files with 1 additions and 1 deletions
|
|
@ -1196,7 +1196,7 @@ 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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue