Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-08-16 19:07:42 +0400
committerCorinna Vinschen <corinna@vinschen.de>2007-08-16 19:07:42 +0400
commit29992bf3dad77669ffbedd92d3075a5fb1b1a1ae (patch)
tree6328ddc2468de168a4eddfe061babb84177fd960 /winsup/cygwin/hookapi.cc
parent29fec364c0ccf362af6cc232dbc2f3cbf3ec877e (diff)
* path.h (path_conv::operator char *): Delete.
(path_conv::operator const char *): Delete. * dlfcn.cc: Throughout, replace path_conv::operator char * and path_conv::operator const char * by call to path_conv::get_win32 for easier transition to UNICODE_PATHs. * fhandler_socket.cc: Ditto. * hookapi.cc: Ditto. * path.cc: Ditto. * spawn.cc: Ditto. * syscalls.cc: Ditto. * uinfo.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/hookapi.cc')
-rw-r--r--winsup/cygwin/hookapi.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/hookapi.cc b/winsup/cygwin/hookapi.cc
index 39ba6de88..552b8bb86 100644
--- a/winsup/cygwin/hookapi.cc
+++ b/winsup/cygwin/hookapi.cc
@@ -219,7 +219,7 @@ ld_preload ()
for (p = strtok_r (s, ":\t\n", &here); p; p = strtok_r (NULL, ":\t\n", &here))
{
path_conv lib (p);
- if (!LoadLibrary (lib))
+ if (!LoadLibrary (lib.get_win32 ()))
{
__seterrno ();
api_fatal ("error while loading shared libraries: %s: "