- fix major bug in LTDL that makes it only look in the first component of
a pathname list.
This commit is contained in:
parent
f05b2649f4
commit
42e89cc4c7
@ -2257,7 +2257,7 @@ find_handle_callback (filename, data, ignored)
|
||||
lt_ptr ignored;
|
||||
{
|
||||
lt_dlhandle *handle = (lt_dlhandle *) data;
|
||||
int found = access (filename, R_OK);
|
||||
int found = (0 == access (filename, R_OK));
|
||||
|
||||
/* Bail out if file cannot be read... */
|
||||
if (!found)
|
||||
|
Loading…
Reference in New Issue
Block a user