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
f7b31209
Commit
f7b31209
authored
Feb 08, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove no longer used parameter from find_fileid_module().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
dc40bc85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
loader.c
dlls/ntdll/loader.c
+2
-2
No files found.
dlls/ntdll/loader.c
View file @
f7b31209
...
...
@@ -464,7 +464,7 @@ static WINE_MODREF *find_fullname_module( const UNICODE_STRING *nt_name )
* Find a module from its file id.
* The loader_section must be locked while calling this function
*/
static
WINE_MODREF
*
find_fileid_module
(
HANDLE
handle
,
struct
stat
*
st
)
static
WINE_MODREF
*
find_fileid_module
(
struct
stat
*
st
)
{
LIST_ENTRY
*
mark
,
*
entry
;
...
...
@@ -2368,7 +2368,7 @@ static HANDLE open_dll_file( UNICODE_STRING *nt_name, WINE_MODREF **pwm, struct
{
fstat
(
fd
,
st
);
if
(
needs_close
)
close
(
fd
);
if
((
*
pwm
=
find_fileid_module
(
handle
,
st
)))
if
((
*
pwm
=
find_fileid_module
(
st
)))
{
TRACE
(
"%s is the same file as existing module %p %s
\n
"
,
debugstr_w
(
nt_name
->
Buffer
),
(
*
pwm
)
->
ldr
.
BaseAddress
,
debugstr_w
(
(
*
pwm
)
->
ldr
.
FullDllName
.
Buffer
));
...
...
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