* dlfcn.cc (gfpod_helper): Only check for POSIX dir separator, same as

in get_full_path_of_dll.
This commit is contained in:
Corinna Vinschen 2014-10-12 19:14:07 +00:00
parent 57cd3486e6
commit 7563a26d9b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-10-12 Corinna Vinschen <corinna@vinschen.de>
* dlfcn.cc (gfpod_helper): Only check for POSIX dir separator, same as
in get_full_path_of_dll.
2014-10-12 Corinna Vinschen <corinna@vinschen.de>
* dlfcn.cc (set_dl_error): Drop useless __stdcall.

View File

@ -41,7 +41,7 @@ check_path_access (const char *mywinenv, const char *name, path_conv& buf)
static inline bool
gfpod_helper (const char *name, path_conv &real_filename)
{
if (strpbrk (name, "/\\"))
if (strchr (name, '/'))
real_filename.check (name, PC_SYM_FOLLOW | PC_NULLEMPTY);
else if (!check_path_access ("LD_LIBRARY_PATH=", name, real_filename))
check_path_access ("/usr/bin:/usr/lib", name, real_filename);