Fix non-initialized variable in glib/gutils.c

This commit is contained in:
Loic Le Page 2022-01-19 19:01:36 +01:00 committed by Loïc Le Page
parent 28fa4325a4
commit bdf1a0ba80

View File

@ -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;