From 87d51e0ab46678e8e2dd93f3c185b5b0fe3a56cb Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 2 Oct 2008 19:47:40 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20554691=20=E2=80=93=20mem=20leak=20in=20fi?= =?UTF-8?q?lechooser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svn path=/trunk/; revision=21568 --- ChangeLog | 6 ++++++ gtk/gtkfilesystemmodel.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 246eac78e8..6c5e891e01 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-02 Christian Persch + + Bug 554691 – mem leak in filechooser + + * gtk/gtkfilesystemmodel.c: Plug a mem leak. + 2008-10-02 Christian Persch Bug 554690 – mem leak in filechooser diff --git a/gtk/gtkfilesystemmodel.c b/gtk/gtkfilesystemmodel.c index 7918f881fb..aab21109db 100644 --- a/gtk/gtkfilesystemmodel.c +++ b/gtk/gtkfilesystemmodel.c @@ -1133,6 +1133,7 @@ _gtk_file_system_model_path_do (GtkFileSystemModel *model, return; } } + g_object_unref (parent_file); if (g_slist_length (files) < 1) return;