From bedc3dba7efe3b9d480cbaa94e293101fb6cbdb3 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 27 Apr 2023 08:46:25 +0200 Subject: [PATCH] filechooser: Plug a memory leak --- gtk/gtkfilechooserwidget.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c index f529f3b970..a639b6d763 100644 --- a/gtk/gtkfilechooserwidget.c +++ b/gtk/gtkfilechooserwidget.c @@ -1653,6 +1653,8 @@ check_file_list_popover_sensitivity (GtkFileChooserWidget *impl) g_simple_action_set_enabled (trash_action, FALSE); g_simple_action_set_enabled (delete_action, FALSE); } + + g_clear_object (&info); } static void -- 2.30.2