mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Don't crash if there is no cache. (#170652, Diego Gonzalez)
2005-03-17 Matthias Clasen <mclasen@redhat.com> * gtk/gtkicontheme.c (theme_lookup_icon): Don't crash if there is no cache. (#170652, Diego Gonzalez)
This commit is contained in:
parent
86009fba38
commit
c4aa487d72
@ -1,5 +1,8 @@
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
|
||||
if there is no cache. (#170652, Diego Gonzalez)
|
||||
|
||||
* gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix):
|
||||
Make inline completion insert the prefix at the
|
||||
right spot. (#170146, Doug Quale)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
|
||||
if there is no cache. (#170652, Diego Gonzalez)
|
||||
|
||||
* gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix):
|
||||
Make inline completion insert the prefix at the
|
||||
right spot. (#170146, Doug Quale)
|
||||
|
@ -1,5 +1,8 @@
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkicontheme.c (theme_lookup_icon): Don't crash
|
||||
if there is no cache. (#170652, Diego Gonzalez)
|
||||
|
||||
* gtk/gtkentrycompletion.c (gtk_entry_completion_real_insert_prefix):
|
||||
Make inline completion insert the prefix at the
|
||||
right spot. (#170146, Doug Quale)
|
||||
|
@ -1891,7 +1891,7 @@ 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
|
||||
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 &&
|
||||
|
Loading…
Reference in New Issue
Block a user