diff --git a/ChangeLog b/ChangeLog index ac3f1ef5e4..37d6ae2d6b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 5 22:05:52 2004 Matthias Clasen + + * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result + to FALSE. (#133539, Morten Welinder) + Thu Feb 5 21:36:43 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ac3f1ef5e4..37d6ae2d6b 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Thu Feb 5 22:05:52 2004 Matthias Clasen + + * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result + to FALSE. (#133539, Morten Welinder) + Thu Feb 5 21:36:43 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index ac3f1ef5e4..37d6ae2d6b 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Thu Feb 5 22:05:52 2004 Matthias Clasen + + * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result + to FALSE. (#133539, Morten Welinder) + Thu Feb 5 21:36:43 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ac3f1ef5e4..37d6ae2d6b 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Thu Feb 5 22:05:52 2004 Matthias Clasen + + * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result + to FALSE. (#133539, Morten Welinder) + Thu Feb 5 21:36:43 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ac3f1ef5e4..37d6ae2d6b 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Thu Feb 5 22:05:52 2004 Matthias Clasen + + * gtk/gtkfilesystemunix.c (bookmark_list_read): Initialize result + to FALSE. (#133539, Morten Welinder) + Thu Feb 5 21:36:43 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_set_active_iter): Fix the logic diff --git a/gtk/gtkfilesystemunix.c b/gtk/gtkfilesystemunix.c index 5b1ce7769a..0a270d5050 100644 --- a/gtk/gtkfilesystemunix.c +++ b/gtk/gtkfilesystemunix.c @@ -905,7 +905,7 @@ bookmark_list_read (GSList **bookmarks, GError **error) { gchar *filename; gchar *contents; - gboolean result; + gboolean result = FALSE; filename = bookmark_get_filename (FALSE); *bookmarks = NULL;