diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-08-06 04:25:57 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-08-06 04:25:57 +0000 |
commit | 9c1f72ca48fba8362e87d97c849339e8edfc8362 (patch) | |
tree | 1abbb0672347765f707db4eef1492e0f3e4007b2 /gtk | |
parent | 85138a27a8b834eb86e15d1c8bc8f51a7b681e77 (diff) | |
download | gtk+-9c1f72ca48fba8362e87d97c849339e8edfc8362.tar.gz |
Add a missing initialization. (#348787, Leonardo Boshell)
2006-08-06 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfontbutton.c (gtk_font_button_update_font_info):
Add a missing initialization. (#348787, Leonardo Boshell)
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkfontbutton.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index 8d9e79bd7d..530ffdcea8 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -853,6 +853,7 @@ gtk_font_button_update_font_info (GtkFontButton *font_button) gint n_families, n_faces, i; n_families = 0; + families = NULL; pango_context_list_families (gtk_widget_get_pango_context (GTK_WIDGET (font_button)), &families, &n_families); n_faces = 0; |