mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 07:38:54 +02:00
Fix non-initialized variable in glib/gutils.c
This commit is contained in:
committed by
Loïc Le Page
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;
|
||||||
|
Reference in New Issue
Block a user