From 63732b5a5a3025c41b7ed622c621cd0504263bb9 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 13 Oct 2014 00:54:08 +0200 Subject: [PATCH] Avoid a potentially uninitialized icon --- src/plugins/favorites.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/favorites.c b/src/plugins/favorites.c index 8d9aa7d..1e8d131 100644 --- a/src/plugins/favorites.c +++ b/src/plugins/favorites.c @@ -327,7 +327,7 @@ static void _on_add_filename(gchar const * pathname, gpointer data) GtkTreeIter iter; struct stat st; gchar * filename; - gint size; + gint size = 24; GdkPixbuf * pixbuf; /* XXX ignore non-directories */