mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:10:22 +00:00
filechooser: Don't crash if invalid thumbnails exist
Failing to load a thumbnail returns a NULL pixbuf. Since the hidpi patches this wasn't checked when creating the surface. Result: assertion failure. https://bugzilla.gnome.org/show_bug.cgi?id=719977
This commit is contained in:
parent
904bc27250
commit
860138b302
@ -813,10 +813,13 @@ _gtk_file_info_render_icon (GFileInfo *info,
|
|||||||
icon_size*scale, icon_size*scale,
|
icon_size*scale, icon_size*scale,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
if (pixbuf != NULL)
|
||||||
|
{
|
||||||
surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale,
|
surface = gdk_cairo_surface_create_from_pixbuf (pixbuf, scale,
|
||||||
gtk_widget_get_window (widget));
|
gtk_widget_get_window (widget));
|
||||||
g_object_unref (pixbuf);
|
g_object_unref (pixbuf);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!surface)
|
if (!surface)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user