mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 20:06:18 +01:00
Fix non-initialized variable in glib/gutils.c
This commit is contained in:
parent
28fa4325a4
commit
bdf1a0ba80
@ -957,7 +957,7 @@ g_get_host_name (void)
|
|||||||
if (g_once_init_enter (&hostname))
|
if (g_once_init_enter (&hostname))
|
||||||
{
|
{
|
||||||
gboolean failed;
|
gboolean failed;
|
||||||
gchar *utmp;
|
gchar *utmp = NULL;
|
||||||
|
|
||||||
#ifndef G_OS_WIN32
|
#ifndef G_OS_WIN32
|
||||||
gsize size;
|
gsize size;
|
||||||
|
Loading…
Reference in New Issue
Block a user