In the Win32 ABI stability version, call g_file_get_contents_utf8(), not
authorTor Lillqvist <tml@novell.com>
Sat, 5 Feb 2005 22:09:11 +0000 (22:09 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sat, 5 Feb 2005 22:09:11 +0000 (22:09 +0000)
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)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/gfileutils.c

index 6bc6978..3335df9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index 6bc6978..3335df9 100644 (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)
index 6bc6978..3335df9 100644 (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)
index 6bc6978..3335df9 100644 (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)
index d9a19ba..fb2462f 100644 (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);