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
58e08ebc
Commit
58e08ebc
authored
Feb 04, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix broken sw_read_mem() call in i386 stack backtrace.
parent
8c16c403
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
cpu_i386.c
dlls/dbghelp/cpu_i386.c
+1
-1
No files found.
dlls/dbghelp/cpu_i386.c
View file @
58e08ebc
...
...
@@ -236,7 +236,7 @@ static BOOL i386_stack_walk(struct cpu_stack_walk* csw, LPSTACKFRAME64 frame)
tmp
.
Offset
=
OFFSETOF
(
next_switch
);
p
=
sw_xlat_addr
(
csw
,
&
tmp
);
if
(
!
sw_read_mem
(
csw
->
hProcess
,
p
,
&
frame16
,
sizeof
(
frame16
)))
if
(
!
sw_read_mem
(
csw
,
p
,
&
frame16
,
sizeof
(
frame16
)))
{
WARN
(
"Bad stack frame 0x%08x
\n
"
,
p
);
goto
done_err
;
...
...
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