mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Don't call g_strerror() here, since it can lead to infinite recursion.
2004-04-23 Matthias Clasen <mclasen@redhat.com> * glib/gconvert.c (open_converter): Don't call g_strerror() here, since it can lead to infinite recursion. (#139133, Piotr Klaban)
This commit is contained in:
parent
5868112a61
commit
b26e8861c1
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-04-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gconvert.c (open_converter): Don't call g_strerror() here,
|
||||
since it can lead to infinite recursion. (#139133, Piotr Klaban)
|
||||
|
||||
2004-04-22 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/testglib.c (main): Trivial warning fix. (#140345)
|
||||
|
@ -403,8 +403,8 @@ open_converter (const gchar *to_codeset,
|
||||
from_codeset, to_codeset);
|
||||
else
|
||||
g_set_error (error, G_CONVERT_ERROR, G_CONVERT_ERROR_FAILED,
|
||||
_("Could not open converter from '%s' to '%s': %s"),
|
||||
from_codeset, to_codeset, g_strerror (errno));
|
||||
_("Could not open converter from '%s' to '%s'"),
|
||||
from_codeset, to_codeset);
|
||||
|
||||
return cd;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user