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
26b37c40
Commit
26b37c40
authored
Nov 24, 2010
by
Daniel Lehman
Committed by
Alexandre Julliard
Feb 26, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Handle the 4th parameter for 64-bit C++ exceptions.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b363f386
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
info.c
programs/winedbg/info.c
+4
-0
No files found.
programs/winedbg/info.c
View file @
26b37c40
...
...
@@ -953,6 +953,10 @@ void info_win32_exception(void)
if
(
rec
->
NumberParameters
==
3
&&
rec
->
ExceptionInformation
[
0
]
==
CXX_FRAME_MAGIC
)
dbg_printf
(
"C++ exception(object = 0x%08lx, type = 0x%08lx)"
,
rec
->
ExceptionInformation
[
1
],
rec
->
ExceptionInformation
[
2
]);
else
if
(
rec
->
NumberParameters
==
4
&&
rec
->
ExceptionInformation
[
0
]
==
CXX_FRAME_MAGIC
)
dbg_printf
(
"C++ exception(object = %p, type = %p, base = %p)"
,
(
void
*
)
rec
->
ExceptionInformation
[
1
],
(
void
*
)
rec
->
ExceptionInformation
[
2
],
(
void
*
)
rec
->
ExceptionInformation
[
3
]);
else
dbg_printf
(
"C++ exception with strange parameter count %d or magic 0x%08lx"
,
rec
->
NumberParameters
,
rec
->
ExceptionInformation
[
0
]);
...
...
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