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
33be954e
Commit
33be954e
authored
Feb 11, 2003
by
Rein Klazes
Committed by
Alexandre Julliard
Feb 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
In PE_fixup_imports report "module file not found" only in case of a
"file not found" error. Otherwise report failure and error number.
parent
e1c72027
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
pe_image.c
loader/pe_image.c
+5
-1
No files found.
loader/pe_image.c
View file @
33be954e
...
...
@@ -273,7 +273,11 @@ DWORD PE_fixup_imports( WINE_MODREF *wm )
wmImp
=
MODULE_LoadLibraryExA
(
name
,
0
,
0
);
if
(
!
wmImp
)
{
ERR_
(
module
)(
"Module (file) %s (which is needed by %s) not found
\n
"
,
name
,
wm
->
filename
);
if
(
GetLastError
()
==
ERROR_FILE_NOT_FOUND
)
ERR_
(
module
)(
"Module (file) %s (which is needed by %s) not found
\n
"
,
name
,
wm
->
filename
);
else
ERR_
(
module
)(
"Loading module (file) %s (which is needed by %s) failed (error %ld).
\n
"
,
name
,
wm
->
filename
,
GetLastError
());
return
1
;
}
wm
->
deps
[
i
++
]
=
wmImp
;
...
...
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