diff options
author | rbuj <[email protected]> | 2021-04-18 11:00:23 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-04-21 20:47:29 +0200 |
commit | 0168fda83f69bc788949fd75613611f77afe37a3 (patch) | |
tree | 53a609b7eb15039e6f5e3a79a6911aea615105f2 /capplet | |
parent | 7ab072c272f65f460cb6665f190cd157d01ce7c3 (diff) | |
download | mate-session-manager-0168fda83f69bc788949fd75613611f77afe37a3.tar.bz2 mate-session-manager-0168fda83f69bc788949fd75613611f77afe37a3.tar.xz |
capplet: memory leak
Diffstat (limited to 'capplet')
-rw-r--r-- | capplet/gsm-properties-dialog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/capplet/gsm-properties-dialog.c b/capplet/gsm-properties-dialog.c index 592b130..6e36cc2 100644 --- a/capplet/gsm-properties-dialog.c +++ b/capplet/gsm-properties-dialog.c @@ -102,6 +102,8 @@ find_by_app (GtkTreeModel *model, g_object_unref (iter_app); return TRUE; } + + g_object_unref (iter_app); } while (gtk_tree_model_iter_next (model, iter)); return FALSE; |