libwine: No longer look for libraries in the dll path on Android.

oldstable
Alexandre Julliard 2014-07-24 09:25:15 +02:00
parent 8478cece69
commit a6a9b05dee
1 changed files with 0 additions and 17 deletions

View File

@ -1014,23 +1014,6 @@ void *wine_dlopen( const char *filename, int flag, char *error, size_t errorsize
ret = dlopen( path, flag | RTLD_FIRST );
}
else
#elif defined(__ANDROID__)
if (!strchr( filename, '/' ) && nb_dll_paths)
{
unsigned int i;
char *buffer = malloc( dll_path_maxlen + strlen(filename) + 2 );
buffer[dll_path_maxlen] = '/';
strcpy( buffer + dll_path_maxlen + 1, filename );
for (i = 0; i < nb_dll_paths; i++)
{
char *path = prepend( buffer + dll_path_maxlen, dll_paths[i], strlen(dll_paths[i]) );
ret = dlopen( path, flag | RTLD_FIRST );
if (ret) break;
}
free( buffer );
if (ret) return ret;
}
#endif
ret = dlopen( filename, flag | RTLD_FIRST );
s = dlerror();