diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 3 | ||||
-rw-r--r-- | gtk/gtkfontbutton.c | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2006-08-06 Matthias Clasen <mclasen@redhat.com> + * gtk/gtkfontbutton.c (gtk_font_button_update_font_info): + Add a missing initialization. (#348787, Leonardo Boshell) + * configure.in: Use $PKG_CONFIG consistently. (#348740, Jeremy Lainé) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 98ebdd80fe..9b9c40298c 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2006-08-06 Matthias Clasen <mclasen@redhat.com> + * gtk/gtkfontbutton.c (gtk_font_button_update_font_info): + Add a missing initialization. (#348787, Leonardo Boshell) + * configure.in: Use $PKG_CONFIG consistently. (#348740, Jeremy Lainé) 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; |