Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
594a5878
Commit
594a5878
authored
Jun 04, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix the spelling of a parameter.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f38c0665
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
module.c
dlls/dbghelp/module.c
+5
-6
No files found.
dlls/dbghelp/module.c
View file @
594a5878
...
...
@@ -334,16 +334,15 @@ static struct module* module_get_container(const struct process* pcs,
* module_get_containee
*
*/
struct
module
*
module_get_containee
(
const
struct
process
*
pcs
,
const
struct
module
*
outter
)
struct
module
*
module_get_containee
(
const
struct
process
*
pcs
,
const
struct
module
*
outer
)
{
struct
module
*
module
;
for
(
module
=
pcs
->
lmodules
;
module
;
module
=
module
->
next
)
{
if
(
module
!=
out
t
er
&&
out
t
er
->
module
.
BaseOfImage
<=
module
->
module
.
BaseOfImage
&&
out
ter
->
module
.
BaseOfImage
+
out
ter
->
module
.
ImageSize
>=
if
(
module
!=
outer
&&
outer
->
module
.
BaseOfImage
<=
module
->
module
.
BaseOfImage
&&
out
er
->
module
.
BaseOfImage
+
ou
ter
->
module
.
ImageSize
>=
module
->
module
.
BaseOfImage
+
module
->
module
.
ImageSize
)
return
module
;
}
...
...
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