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
8e3bb615
Commit
8e3bb615
authored
May 13, 2003
by
Robert Shearman
Committed by
Alexandre Julliard
May 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix NULL pointer error when displaying error message about missing
forwarded export.
parent
8f55ac51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
loader.c
dlls/ntdll/loader.c
+3
-2
No files found.
dlls/ntdll/loader.c
View file @
8e3bb615
...
...
@@ -123,7 +123,8 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward )
if
(
!
(
wm
=
MODULE_FindModule
(
mod_name
)))
{
ERR
(
"module not found for forward '%s' used by '%s'
\n
"
,
forward
,
current_modref
->
filename
);
ERR
(
"module not found for forward '%s' used by '%s'
\n
"
,
forward
,
get_modref
(
module
)
->
filename
);
return
NULL
;
}
if
((
exports
=
RtlImageDirectoryEntryToData
(
wm
->
ldr
.
BaseAddress
,
TRUE
,
...
...
@@ -134,7 +135,7 @@ static FARPROC find_forwarded_export( HMODULE module, const char *forward )
{
ERR
(
"function not found for forward '%s' used by '%s'."
" If you are using builtin '%s', try using the native one instead.
\n
"
,
forward
,
current_modref
->
filename
,
current_modref
->
modname
);
forward
,
get_modref
(
module
)
->
filename
,
get_modref
(
module
)
->
modname
);
}
return
proc
;
}
...
...
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