mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-03-11 19:46:38 +00:00
Free CollectionClosure::collection_path when it's freed
Similarly to what is done ItemClosure::collection_path, make sure that CollectionClosure::collection_path is freed in collection_closure_free(). https://bugzilla.gnome.org/show_bug.cgi?id=756766
This commit is contained in:
parent
396d192a1f
commit
ec33acd46e
@ -1660,6 +1660,7 @@ collection_closure_free (gpointer data)
|
||||
CollectionClosure *closure = data;
|
||||
g_clear_object (&closure->cancellable);
|
||||
g_clear_object (&closure->prompt);
|
||||
g_free (closure->collection_path);
|
||||
g_slice_free (CollectionClosure, closure);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user