mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[RTL] Fixes for RtlpUnwindInternal
This commit is contained in:
parent
aade1ab01b
commit
0c211b975f
1 changed files with 3 additions and 3 deletions
|
@ -693,7 +693,7 @@ RtlpUnwindInternal(
|
|||
UnwindContext = *ContextRecord;
|
||||
|
||||
/* Set up the constant fields of the dispatcher context */
|
||||
DispatcherContext.ContextRecord = ContextRecord;
|
||||
DispatcherContext.ContextRecord = &UnwindContext;
|
||||
DispatcherContext.HistoryTable = HistoryTable;
|
||||
DispatcherContext.TargetIp = (ULONG64)TargetIp;
|
||||
|
||||
|
@ -778,7 +778,7 @@ RtlpUnwindInternal(
|
|||
/* Call the language specific handler */
|
||||
Disposition = ExceptionRoutine(ExceptionRecord,
|
||||
(PVOID)EstablisherFrame,
|
||||
&UnwindContext,
|
||||
ContextRecord,
|
||||
&DispatcherContext);
|
||||
|
||||
/* Clear exception flags for the next iteration */
|
||||
|
@ -991,7 +991,7 @@ RtlWalkFrameChain(OUT PVOID *Callers,
|
|||
}
|
||||
|
||||
/* Check, if we have left our stack */
|
||||
if ((Context.Rsp < StackLow) || (Context.Rsp > StackHigh))
|
||||
if ((Context.Rsp <= StackLow) || (Context.Rsp >= StackHigh))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue