summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserentry.c
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2011-06-22 15:23:15 -0500
committerMike Gorse <mgorse@novell.com>2011-06-27 12:36:11 -0500
commit4fa3cef7952a523cd85e5d7c60f190908731c7dc (patch)
tree61b4cf2a5442e8e60a716b4e8751b31252e3e44e /gtk/gtkfilechooserentry.c
parent399de111167c198a7d2ccbd459a2db7c6389181e (diff)
downloadgtk+-4fa3cef7952a523cd85e5d7c60f190908731c7dc.tar.gz
bgo#653191 - fix uninitialized variable in gtk_file_chooser_entry.c
Diffstat (limited to 'gtk/gtkfilechooserentry.c')
-rw-r--r--gtk/gtkfilechooserentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c
index cebaa9d82b..55303ed0fb 100644
--- a/gtk/gtkfilechooserentry.c
+++ b/gtk/gtkfilechooserentry.c
@@ -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;