* dlfcn.cc (get_full_path_of_dll): Revert patch from 2008-07-16.

This commit is contained in:
Corinna Vinschen 2009-03-19 18:16:07 +00:00
parent a9a520b62b
commit d09a742ef4
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-03-19 Corinna Vinschen <corinna@vinschen.de>
* dlfcn.cc (get_full_path_of_dll): Revert patch from 2008-07-16.
2009-03-19 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* cygwin.din: Export log2, log2f as functions.

View File

@ -1,6 +1,6 @@
/* dlfcn.cc
Copyright 1998, 2000, 2001, 2002, 2003, 2004, 2008 Red Hat, Inc.
Copyright 1998, 2000, 2001, 2002, 2003, 2004, 2008, 2009 Red Hat, Inc.
This file is part of Cygwin.
@ -63,7 +63,7 @@ get_full_path_of_dll (const char* str, char *name)
if (isabspath (name) ||
(ret = check_path_access ("LD_LIBRARY_PATH=", name, real_filename)
?: check_path_access ("/usr/lib", name, real_filename)) == NULL)
real_filename.check (name, PC_SYM_FOLLOW | PC_NULLEMPTY); /* Convert */
real_filename.check (name, PC_SYM_FOLLOW | PC_NOFULL | PC_NULLEMPTY); /* Convert */
if (!real_filename.error)
ret = strcpy (name, real_filename.get_win32 ());