mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-31 04:43:06 +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=/trunk/; revision=6790
This commit is contained in:
parent
e4b7751f44
commit
8d5927996d
@ -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 10:39:17 Tim Janik <timj@imendio.com>
|
2008-03-31 10:39:17 Tim Janik <timj@imendio.com>
|
||||||
|
|
||||||
* glib/gutils.h: reapply inlining fix from r6333 to fix:
|
* glib/gutils.h: reapply inlining fix from r6333 to fix:
|
||||||
|
@ -262,9 +262,9 @@ g_win32_get_package_installation_directory_of_module (gpointer hmodule)
|
|||||||
{
|
{
|
||||||
gchar tmp[MAX_PATH];
|
gchar tmp[MAX_PATH];
|
||||||
|
|
||||||
cygwin_conv_to_posix_path(fn, tmp);
|
cygwin_conv_to_posix_path (retval, tmp);
|
||||||
g_free(fn);
|
g_free (retval);
|
||||||
fn = g_strdup(tmp);
|
retval = g_strdup (tmp);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user