glib r6791 - in branches/glib-2-16: . glib



Author: tml
Date: Mon Mar 31 14:41:43 2008
New Revision: 6791
URL: http://svn.gnome.org/viewvc/glib?rev=6791&view=rev

Log:
2008-03-31  Tor Lillqvist  <tml novell com>

	* glib/gwin32.c
	(g_win32_get_package_installation_directory_of_module): Fix Cygwin
	breakage. Patch by Lieven van der Heide.



Modified:
   branches/glib-2-16/ChangeLog
   branches/glib-2-16/glib/gwin32.c

Modified: branches/glib-2-16/glib/gwin32.c
==============================================================================
--- branches/glib-2-16/glib/gwin32.c	(original)
+++ branches/glib-2-16/glib/gwin32.c	Mon Mar 31 14:41:43 2008
@@ -262,9 +262,9 @@
   {
     gchar tmp[MAX_PATH];
 
-    cygwin_conv_to_posix_path(fn, tmp);
-    g_free(fn);
-    fn = g_strdup(tmp);
+    cygwin_conv_to_posix_path (retval, tmp);
+    g_free (retval);
+    retval = g_strdup (tmp);
   }
 #endif
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]