Merge branch 'fix-gstrerror-warning' into 'main'

gstrfuncs: Fix a compiler warning in g_strerror()

See merge request GNOME/glib!2956
This commit is contained in:
Philip Withnall 2022-10-20 12:36:27 +00:00
commit 1db9066485

View File

@ -1362,7 +1362,7 @@ g_strerror (gint errnum)
G_UNLOCK (errors);
errno = saved_errno;
return msg;
return NULL;
}
if (!g_get_console_charset (NULL))