mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-30 19:06:38 +02:00
Fix Cygwin breakage. Patch by Lieven van der Heide.
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. svn path=/branches/glib-2-16/; revision=6791
This commit is contained in:
committed by
Tor Lillqvist
parent
7030d82d1c
commit
4df1459858
@@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2008-03-31 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
Bug 525192 - 100% CPU if run main loop with no IO sources
|
||||
|
@@ -262,9 +262,9 @@ g_win32_get_package_installation_directory_of_module (gpointer hmodule)
|
||||
{
|
||||
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
|
||||
|
||||
|
Reference in New Issue
Block a user