From d5739ef148b02a5212dea2c0d7dcb7de4c79dd46 Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak <ambrop7@gmail.com> Date: Sat, 19 Feb 2011 18:26:20 +0100 Subject: [PATCH] Don't decrease refcount of files returned by GFileIcon (bug #7309). This fixes a crash when hovering CD drives with a special icon in computer://. Signed-off-by: Jannis Pohlmann <jannis@xfce.org> --- NEWS | 2 ++ thunar/thunar-file.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 686006f00..293c41768 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,8 @@ - Fix properties dialog crash with files with unknown content type. - Fix crash when opening a mountable drive with no media (bug #7308). Reported and solved by Ambroz Bizjak. +- Fix crash when hovering a CD drive with a special icon (bug #7309). + Reported and solved by Ambroz Bizjak. 1.3.0 ===== diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c index 25b16a3d0..506713c63 100644 --- a/thunar/thunar-file.c +++ b/thunar/thunar-file.c @@ -2921,7 +2921,6 @@ thunar_file_get_icon_name (const ThunarFile *file, { icon_file = g_file_icon_get_file (G_FILE_ICON (icon)); icon_name = g_file_get_path (icon_file); - g_object_unref (icon_file); } } -- GitLab