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
9f4c0c4d
Commit
9f4c0c4d
authored
Oct 16, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Oct 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Set EH_NESTED_CALL flag in call_stack_handlers() on x64.
parent
e5679b5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+5
-4
No files found.
dlls/ntdll/signal_x86_64.c
View file @
9f4c0c4d
...
...
@@ -351,7 +351,7 @@ static DWORD __cdecl nested_exception_handler( EXCEPTION_RECORD *rec, EXCEPTION_
CONTEXT
*
context
,
EXCEPTION_REGISTRATION_RECORD
**
dispatcher
)
{
if
(
!
(
rec
->
ExceptionFlags
&
(
EH_UNWINDING
|
EH_EXIT_UNWIND
)))
re
c
->
ExceptionFlags
|=
EH_NESTED_CALL
;
re
turn
ExceptionNestedException
;
return
ExceptionContinueSearch
;
}
...
...
@@ -360,7 +360,6 @@ static DWORD __cdecl nested_exception_handler( EXCEPTION_RECORD *rec, EXCEPTION_
* call_handler
*
* Call a single exception handler.
* FIXME: Handle nested exceptions.
*/
static
DWORD
call_handler
(
EXCEPTION_RECORD
*
rec
,
CONTEXT
*
context
,
DISPATCHER_CONTEXT
*
dispatch
)
{
...
...
@@ -447,7 +446,8 @@ static NTSTATUS call_stack_handlers( EXCEPTION_RECORD *rec, CONTEXT *orig_contex
case
ExceptionContinueSearch
:
break
;
case
ExceptionNestedException
:
FIXME_
(
seh
)(
"nested exception
\n
"
);
rec
->
ExceptionFlags
|=
EH_NESTED_CALL
;
TRACE_
(
seh
)(
"nested exception
\n
"
);
break
;
case
ExceptionCollidedUnwind
:
{
ULONG64
frame
;
...
...
@@ -477,7 +477,8 @@ static NTSTATUS call_stack_handlers( EXCEPTION_RECORD *rec, CONTEXT *orig_contex
case
ExceptionContinueSearch
:
break
;
case
ExceptionNestedException
:
FIXME_
(
seh
)(
"nested exception
\n
"
);
rec
->
ExceptionFlags
|=
EH_NESTED_CALL
;
TRACE_
(
seh
)(
"nested exception
\n
"
);
break
;
case
ExceptionCollidedUnwind
:
{
ULONG64
frame
;
...
...
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