mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
Initialize variables to not make gcc nervous.
2005-08-08 Matthias Clasen <mclasen@redhat.com> * glib/gutils.c (_g_compute_locale_variants): Initialize variables to not make gcc nervous.
This commit is contained in:
parent
6c538d33ee
commit
f3d4fb75b8
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user