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
1cf2ae19
Commit
1cf2ae19
authored
Apr 21, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Support a full path name in the loadFrom dll redirection entry.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=50978
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
788fd4ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
loader.c
dlls/ntdll/loader.c
+2
-1
No files found.
dlls/ntdll/loader.c
View file @
1cf2ae19
...
...
@@ -2451,7 +2451,8 @@ static NTSTATUS build_dlldata_path( LPCWSTR libname, ACTCTX_SECTION_KEYED_DATA *
memcpy
(
p
,
base
+
dlldata
->
paths
[
i
].
offset
,
dlldata
->
paths
[
i
].
len
);
p
+=
dlldata
->
paths
[
i
].
len
/
sizeof
(
WCHAR
);
}
wcscpy
(
p
,
libname
);
if
(
p
==
buffer
||
p
[
-
1
]
==
'\\'
)
wcscpy
(
p
,
libname
);
else
*
p
=
0
;
if
(
dlldata
->
flags
&
DLL_REDIRECT_PATH_EXPAND
)
{
...
...
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