strdup result so caller doesn't free internally managed memory.

Thu Aug  5 20:53:00 2004  Ray Strode  <rstrode@redhat.com>

	* glib/gutils.h (g_get_codeset): strdup result so caller
	doesn't free internally managed memory.
This commit is contained in:
Ray Strode 2004-08-05 20:53:25 +00:00 committed by Ray Strode
parent 46571e1d77
commit cf12bdfcd1
6 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Aug 5 20:53:00 2004 Ray Strode <rstrode@redhat.com>
* glib/gutils.h (g_get_codeset): strdup result so caller
doesn't free internally managed memory.
2004-08-04 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add glib_check_version.

View File

@ -1,3 +1,8 @@
Thu Aug 5 20:53:00 2004 Ray Strode <rstrode@redhat.com>
* glib/gutils.h (g_get_codeset): strdup result so caller
doesn't free internally managed memory.
2004-08-04 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add glib_check_version.

View File

@ -1,3 +1,8 @@
Thu Aug 5 20:53:00 2004 Ray Strode <rstrode@redhat.com>
* glib/gutils.h (g_get_codeset): strdup result so caller
doesn't free internally managed memory.
2004-08-04 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add glib_check_version.

View File

@ -1,3 +1,8 @@
Thu Aug 5 20:53:00 2004 Ray Strode <rstrode@redhat.com>
* glib/gutils.h (g_get_codeset): strdup result so caller
doesn't free internally managed memory.
2004-08-04 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add glib_check_version.

View File

@ -1,3 +1,8 @@
Thu Aug 5 20:53:00 2004 Ray Strode <rstrode@redhat.com>
* glib/gutils.h (g_get_codeset): strdup result so caller
doesn't free internally managed memory.
2004-08-04 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add glib_check_version.

View File

@ -1283,11 +1283,11 @@ g_nullify_pointer (gpointer *nullify_location)
gchar *
g_get_codeset (void)
{
gchar *charset;
const gchar *charset;
g_get_charset (&charset);
return charset;
return g_strdup (charset);
}
#ifdef ENABLE_NLS