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
5acf1510
Commit
5acf1510
authored
Jul 07, 2014
by
Ken Thomases
Committed by
Alexandre Julliard
Jul 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Ignore the __PAGEZERO segment.
It made it seem as though the wineloader always started at address 0. Issue identified by Jacek Caban.
parent
1f2680f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
macho_module.c
dlls/dbghelp/macho_module.c
+5
-0
No files found.
dlls/dbghelp/macho_module.c
View file @
5acf1510
...
...
@@ -398,6 +398,11 @@ static int macho_accum_segs_range(struct macho_file_map* fmap,
TRACE
(
"Ignoring special Wine segment %s
\n
"
,
debugstr_an
(
sc
->
segname
,
sizeof
(
sc
->
segname
)));
return
0
;
}
if
(
!
strncmp
(
sc
->
segname
,
"__PAGEZERO"
,
10
))
{
TRACE
(
"Ignoring __PAGEZERO segment
\n
"
);
return
0
;
}
/* If this segment starts before previously-known earliest, record
* new earliest. */
...
...
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