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
bc71c7de
Commit
bc71c7de
authored
Mar 28, 2016
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Call C structured exception translator in x86_64 __CxxFrameHandler.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35133dbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
except_x86_64.c
dlls/msvcrt/except_x86_64.c
+10
-0
No files found.
dlls/msvcrt/except_x86_64.c
View file @
bc71c7de
...
...
@@ -207,9 +207,19 @@ static DWORD cxx_frame_handler(EXCEPTION_RECORD *rec, ULONG64 frame,
}
else
{
thread_data_t
*
data
=
msvcrt_get_thread_data
();
exc_type
=
NULL
;
TRACE
(
"handling C exception code %x rec %p frame %lx unwind_help %d descr %p
\n
"
,
rec
->
ExceptionCode
,
rec
,
frame
,
*
((
INT
*
)(
frame
+
descr
->
unwind_help
)),
descr
);
if
(
data
->
se_translator
)
{
EXCEPTION_POINTERS
except_ptrs
;
except_ptrs
.
ExceptionRecord
=
rec
;
except_ptrs
.
ContextRecord
=
context
;
data
->
se_translator
(
rec
->
ExceptionCode
,
&
except_ptrs
);
}
}
return
ExceptionContinueSearch
;
...
...
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