summaryrefslogtreecommitdiff
path: root/gtk/gtkicontheme.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-08-19 04:39:30 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-08-19 04:39:30 +0000
commitd1ab2bf3d5f13e64fbdfd21be3edf29d1eeefd9b (patch)
treef7534a2d2bcd6161e8d0629dcfdc808c9ee2972d /gtk/gtkicontheme.c
parentaf7a0fa1544def2a67e5f57fbba490d38f81ac34 (diff)
downloadgtk+-d1ab2bf3d5f13e64fbdfd21be3edf29d1eeefd9b.tar.gz
Store GtkIconData structs in the per-directory hash, even if they come
2005-08-19 Matthias Clasen <mclasen@redhat.com> * gtk/gtkicontheme.c (theme_lookup_icon): Store GtkIconData structs in the per-directory hash, even if they come from the icon cache. We tried to avoid that before, but as a result leaked icon data structs. (#313852, Kjartan Maraas)
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r--gtk/gtkicontheme.c30
1 files changed, 20 insertions, 10 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c
index 267c23418f..accdba51a3 100644
--- a/gtk/gtkicontheme.c
+++ b/gtk/gtkicontheme.c
@@ -208,10 +208,10 @@ static void do_theme_change (GtkIconTheme *icon_theme);
static void blow_themes (GtkIconTheme *icon_themes);
-static void icon_data_free (GtkIconData *icon_data);
-static void load_icon_data (IconThemeDir *dir,
- const char *path,
- const char *name);
+static void icon_data_free (GtkIconData *icon_data);
+static void load_icon_data (IconThemeDir *dir,
+ const char *path,
+ const char *name);
static IconSuffix theme_dir_get_icon_suffix (IconThemeDir *dir,
const gchar *icon_name,
@@ -1880,11 +1880,21 @@ theme_lookup_icon (IconTheme *theme,
if (min_dir->icon_data != NULL)
icon_info->data = g_hash_table_lookup (min_dir->icon_data, icon_name);
- else if (min_dir->cache != NULL)
- icon_info->data = _gtk_icon_cache_get_icon_data (min_dir->cache, icon_name, min_dir->subdir);
- if (icon_info->data == NULL &&
- min_dir->cache && has_icon_file)
+ if (icon_info->data == NULL && min_dir->cache != NULL)
+ {
+ icon_info->data = _gtk_icon_cache_get_icon_data (min_dir->cache, icon_name, min_dir->subdir);
+ if (icon_info->data)
+ {
+ if (min_dir->icon_data == NULL)
+ min_dir->icon_data = g_hash_table_new_full (g_str_hash, g_str_equal,
+ g_free, (GDestroyNotify)icon_data_free);
+
+ g_hash_table_replace (min_dir->icon_data, g_strdup (icon_name), icon_info->data);
+ }
+ }
+
+ if (icon_info->data == NULL && has_icon_file)
{
gchar *icon_file_name, *icon_file_path;
@@ -1893,7 +1903,7 @@ theme_lookup_icon (IconTheme *theme,
if (g_file_test (icon_file_path, G_FILE_TEST_IS_REGULAR))
{
- if (min_dir->icon_data == NULL)
+ if (min_dir->icon_data == NULL)
min_dir->icon_data = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, (GDestroyNotify)icon_data_free);
load_icon_data (min_dir, icon_file_path, icon_file_name);
@@ -2315,7 +2325,7 @@ gtk_icon_info_free (GtkIconInfo *icon_info)
g_object_unref (icon_info->pixbuf);
if (icon_info->cache_pixbuf)
g_object_unref (icon_info->cache_pixbuf);
-
+
g_free (icon_info);
}