This is an automated email from the git hooks/post-receive script.

f2404 pushed a 
commit to branch 
master
in repository apps/ristretto.

commit 09330259e6f945558ba6722f5ea8954cf1de7baf
Author: Igor <f2...@yandex.ru>
Date:   Thu Apr 11 15:01:14 2019 -0400

    Fix memory leak in the "Clear private data" dialog
---
 src/privacy_dialog.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/privacy_dialog.c b/src/privacy_dialog.c
index 7b1fec6..f936ddc 100644
--- a/src/privacy_dialog.c
+++ b/src/privacy_dialog.c
@@ -298,6 +298,12 @@ rstto_privacy_dialog_dispose (GObject *object)
             dialog->priv->settings = NULL;
         }
 
+        if (dialog->priv->filters)
+        {
+            g_slist_free (dialog->priv->filters);
+            dialog->priv->filters = NULL;
+        }
+
         g_free (dialog->priv);
         dialog->priv = NULL;
     }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to