diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | glib/gutils.c | 8 |
5 files changed, 24 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2005-08-08 Matthias Clasen <mclasen@redhat.com> + + * glib/gutils.c (_g_compute_locale_variants): Initialize + variables to not make gcc nervous. + 2005-08-08 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: remove stray -V option to grep so it actually diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 9e5efd1d7..6d7cf1ae0 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2005-08-08 Matthias Clasen <mclasen@redhat.com> + + * glib/gutils.c (_g_compute_locale_variants): Initialize + variables to not make gcc nervous. + 2005-08-08 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: remove stray -V option to grep so it actually diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 9e5efd1d7..6d7cf1ae0 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2005-08-08 Matthias Clasen <mclasen@redhat.com> + + * glib/gutils.c (_g_compute_locale_variants): Initialize + variables to not make gcc nervous. + 2005-08-08 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: remove stray -V option to grep so it actually diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 9e5efd1d7..6d7cf1ae0 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2005-08-08 Matthias Clasen <mclasen@redhat.com> + + * glib/gutils.c (_g_compute_locale_variants): Initialize + variables to not make gcc nervous. + 2005-08-08 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: remove stray -V option to grep so it actually diff --git a/glib/gutils.c b/glib/gutils.c index 5e03a358e..6001457c3 100644 --- a/glib/gutils.c +++ b/glib/gutils.c @@ -2560,10 +2560,10 @@ _g_compute_locale_variants (const gchar *locale) { GSList *retval = NULL; - gchar *language; - gchar *territory; - gchar *codeset; - gchar *modifier; + gchar *language = NULL; + gchar *territory = NULL; + gchar *codeset = NULL; + gchar *modifier = NULL; guint mask; guint i; |