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
9f0119a0
Commit
9f0119a0
authored
Mar 28, 2012
by
Thomas Faber
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix uninitialized variable usage.
parent
574becbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
cpu_x86_64.c
dlls/dbghelp/cpu_x86_64.c
+2
-0
No files found.
dlls/dbghelp/cpu_x86_64.c
View file @
9f0119a0
...
...
@@ -313,6 +313,7 @@ static BOOL is_inside_epilog(struct cpu_stack_walk* csw, DWORD64 pc,
}
return
FALSE
;
case
0x83
:
/* add $n,%rsp */
if
(
!
sw_read_mem
(
csw
,
pc
+
2
,
&
op2
,
1
))
return
FALSE
;
if
(
op0
==
0x48
&&
op2
==
0xc4
)
{
pc
+=
4
;
...
...
@@ -320,6 +321,7 @@ static BOOL is_inside_epilog(struct cpu_stack_walk* csw, DWORD64 pc,
}
return
FALSE
;
case
0x8d
:
/* lea n(reg),%rsp */
if
(
!
sw_read_mem
(
csw
,
pc
+
2
,
&
op2
,
1
))
return
FALSE
;
if
(
op0
&
0x06
)
return
FALSE
;
/* rex.RX must be cleared */
if
(((
op2
>>
3
)
&
7
)
!=
4
)
return
FALSE
;
/* dest reg mus be %rsp */
if
((
op2
&
7
)
==
4
)
return
FALSE
;
/* no SIB byte allowed */
...
...
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