Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a6a9b05d
Commit
a6a9b05d
authored
Jul 24, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: No longer look for libraries in the dll path on Android.
parent
8478cece
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
17 deletions
+0
-17
loader.c
libs/wine/loader.c
+0
-17
No files found.
libs/wine/loader.c
View file @
a6a9b05d
...
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment