bgo#653191 - fix uninitialized variable in gtk_file_chooser_entry.c

This commit is contained in:
Mike Gorse 2011-06-22 15:23:15 -05:00
parent 399de11116
commit 4fa3cef795

View File

@ -369,7 +369,7 @@ completion_match_func (GtkEntryCompletion *comp,
gpointer data)
{
GtkFileChooserEntry *chooser_entry;
char *name;
char *name = NULL;
gboolean result;
char *norm_file_part;
char *norm_name;