mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
gstrfuncs: Handle the case strerror_r returns an error
In the case strerror_r returns an error (both in the char* variant and in the int variant) we should not try to proceed converting the message and adding to the errors maps, as that's likely causing errors. So, let's just return a null string in case this happens
This commit is contained in:
parent
640e586251
commit
edd718ba48
@ -1336,6 +1336,9 @@ g_strerror (gint errnum)
|
||||
{
|
||||
gchar buf[1024];
|
||||
GError *error = NULL;
|
||||
#if defined(HAVE_STRERROR_R) && !defined(STRERROR_R_CHAR_P)
|
||||
int ret;
|
||||
#endif
|
||||
|
||||
#if defined(G_OS_WIN32)
|
||||
strerror_s (buf, sizeof (buf), errnum);
|
||||
@ -1345,13 +1348,23 @@ g_strerror (gint errnum)
|
||||
# if defined(STRERROR_R_CHAR_P)
|
||||
msg = strerror_r (errnum, buf, sizeof (buf));
|
||||
# else
|
||||
(void) strerror_r (errnum, buf, sizeof (buf));
|
||||
ret = strerror_r (errnum, buf, sizeof (buf));
|
||||
if (ret == 0 || ret == EINVAL)
|
||||
msg = buf;
|
||||
# endif /* HAVE_STRERROR_R */
|
||||
#else
|
||||
g_strlcpy (buf, strerror (errnum), sizeof (buf));
|
||||
msg = buf;
|
||||
#endif
|
||||
|
||||
if (!msg)
|
||||
{
|
||||
G_UNLOCK (errors);
|
||||
|
||||
errno = saved_errno;
|
||||
return msg;
|
||||
}
|
||||
|
||||
if (!g_get_console_charset (NULL))
|
||||
{
|
||||
msg = g_locale_to_utf8 (msg, -1, NULL, NULL, &error);
|
||||
|
Loading…
Reference in New Issue
Block a user