In the Win32 ABI stability version, call g_file_get_contents_utf8(), not

2005-02-05  Tor Lillqvist  <tml@novell.com>

	* glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
	stability version, call g_file_get_contents_utf8(), not
	itself. (#166386)
This commit is contained in:
Tor Lillqvist 2005-02-05 22:09:11 +00:00 committed by Tor Lillqvist
parent f92617db07
commit fc67e936f8
5 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-02-05 Tor Lillqvist <tml@novell.com>
* glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
stability version, call g_file_get_contents_utf8(), not
itself. (#166386)
2005-02-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Remove the --enable-ansi option (#160469)

View File

@ -1,3 +1,9 @@
2005-02-05 Tor Lillqvist <tml@novell.com>
* glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
stability version, call g_file_get_contents_utf8(), not
itself. (#166386)
2005-02-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Remove the --enable-ansi option (#160469)

View File

@ -1,3 +1,9 @@
2005-02-05 Tor Lillqvist <tml@novell.com>
* glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
stability version, call g_file_get_contents_utf8(), not
itself. (#166386)
2005-02-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Remove the --enable-ansi option (#160469)

View File

@ -1,3 +1,9 @@
2005-02-05 Tor Lillqvist <tml@novell.com>
* glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
stability version, call g_file_get_contents_utf8(), not
itself. (#166386)
2005-02-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Remove the --enable-ansi option (#160469)

View File

@ -804,7 +804,7 @@ g_file_get_contents (const gchar *filename,
if (utf8_filename == NULL)
return FALSE;
retval = g_file_get_contents (utf8_filename, contents, length, error);
retval = g_file_get_contents_utf8 (utf8_filename, contents, length, error);
g_free (utf8_filename);