Fix a theoretically possible use of an uninitialized value

This commit is contained in:
Colomban Wendling 2011-12-26 16:06:02 +01:00
parent 804de2572e
commit d79268b346

View File

@ -212,7 +212,7 @@ static GtkWidget *create_switch_dialog(void)
static void update_filename_label(void)
{
guint i;
gchar *msg;
gchar *msg = NULL;
guint queue_length;
GeanyDocument *doc;