From d79268b346a448a30c8f8db18d49de4dc41b3321 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Mon, 26 Dec 2011 16:06:02 +0100 Subject: [PATCH] Fix a theoretically possible use of an uninitialized value --- src/notebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notebook.c b/src/notebook.c index b5a4d24fa..460d2685d 100644 --- a/src/notebook.c +++ b/src/notebook.c @@ -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;