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
be68890c
Commit
be68890c
authored
Aug 04, 2015
by
Ken Thomases
Committed by
Alexandre Julliard
Aug 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix a copy-paste error in comparing Mach-O segment names.
parent
1e439a5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
macho_module.c
dlls/dbghelp/macho_module.c
+1
-1
No files found.
dlls/dbghelp/macho_module.c
View file @
be68890c
...
@@ -337,7 +337,7 @@ BOOL macho_find_section(struct image_file_map* ifm, const char* segname, const c
...
@@ -337,7 +337,7 @@ BOOL macho_find_section(struct image_file_map* ifm, const char* segname, const c
for
(
i
=
0
;
i
<
fmap
->
num_sections
;
i
++
)
for
(
i
=
0
;
i
<
fmap
->
num_sections
;
i
++
)
{
{
if
(
strcmp
(
fmap
->
sect
[
i
].
section
->
sectname
,
sectname
)
==
0
&&
if
(
strcmp
(
fmap
->
sect
[
i
].
section
->
sectname
,
sectname
)
==
0
&&
(
!
segname
||
strcmp
(
fmap
->
sect
[
i
].
section
->
se
ct
name
,
segname
)
==
0
))
(
!
segname
||
strcmp
(
fmap
->
sect
[
i
].
section
->
se
g
name
,
segname
)
==
0
))
{
{
ism
->
fmap
=
ifm
;
ism
->
fmap
=
ifm
;
ism
->
sidx
=
i
;
ism
->
sidx
=
i
;
...
...
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