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
0f3c31b1
Commit
0f3c31b1
authored
Jan 02, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 02, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Try to convert C to C++ exception in __CxxFrameHandler.
parent
8cf8285a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
except_i386.c
dlls/msvcrt/except_i386.c
+10
-0
No files found.
dlls/msvcrt/except_i386.c
View file @
0f3c31b1
...
...
@@ -543,9 +543,19 @@ DWORD CDECL cxx_frame_handler( PEXCEPTION_RECORD rec, cxx_exception_frame* frame
}
else
{
thread_data_t
*
data
=
msvcrt_get_thread_data
();
exc_type
=
NULL
;
TRACE
(
"handling C exception code %x rec %p frame %p trylevel %d descr %p nested_frame %p
\n
"
,
rec
->
ExceptionCode
,
rec
,
frame
,
frame
->
trylevel
,
descr
,
nested_frame
);
if
(
data
->
se_translator
)
{
EXCEPTION_POINTERS
except_ptrs
;
except_ptrs
.
ExceptionRecord
=
rec
;
except_ptrs
.
ContextRecord
=
context
;
data
->
se_translator
(
rec
->
ExceptionCode
,
&
except_ptrs
);
}
}
call_catch_block
(
rec
,
frame
,
descr
,
frame
->
trylevel
,
exc_type
);
...
...
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