mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
[RTL] Set unwind flags in RtlUnwindEx
This commit is contained in:
parent
0c211b975f
commit
8d3bc7c572
1 changed files with 7 additions and 0 deletions
|
@ -891,6 +891,13 @@ RtlUnwindEx(
|
|||
ExceptionRecord = &LocalExceptionRecord;
|
||||
}
|
||||
|
||||
/* Set unwind flags */
|
||||
ExceptionRecord->ExceptionFlags = EXCEPTION_UNWINDING;
|
||||
if (TargetFrame == NULL)
|
||||
{
|
||||
ExceptionRecord->ExceptionFlags |= EXCEPTION_EXIT_UNWIND;
|
||||
}
|
||||
|
||||
/* Call the internal function */
|
||||
RtlpUnwindInternal(TargetFrame,
|
||||
TargetIp,
|
||||
|
|
Loading…
Reference in a new issue