mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[RTL/x64] Fix a typo RtplUnwindInternal -> RtlpUnwindInternal (#3912)
This commit is contained in:
parent
6ef6fabfc5
commit
3ba1d82c41
2 changed files with 4 additions and 4 deletions
|
@ -70,7 +70,7 @@ RtlpGetExceptionAddress(VOID)
|
|||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
RtplUnwindInternal(
|
||||
RtlpUnwindInternal(
|
||||
_In_opt_ PVOID TargetFrame,
|
||||
_In_opt_ PVOID TargetIp,
|
||||
_In_ PEXCEPTION_RECORD ExceptionRecord,
|
||||
|
@ -101,7 +101,7 @@ RtlDispatchException(
|
|||
}
|
||||
|
||||
/* Call the internal unwind routine */
|
||||
Handled = RtplUnwindInternal(NULL, // TargetFrame
|
||||
Handled = RtlpUnwindInternal(NULL, // TargetFrame
|
||||
NULL, // TargetIp
|
||||
ExceptionRecord,
|
||||
0, // ReturnValue
|
||||
|
|
|
@ -683,7 +683,7 @@ Exit:
|
|||
*/
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
RtplUnwindInternal(
|
||||
RtlpUnwindInternal(
|
||||
_In_opt_ PVOID TargetFrame,
|
||||
_In_opt_ PVOID TargetIp,
|
||||
_In_ PEXCEPTION_RECORD ExceptionRecord,
|
||||
|
@ -907,7 +907,7 @@ RtlUnwindEx(
|
|||
}
|
||||
|
||||
/* Call the internal function */
|
||||
RtplUnwindInternal(TargetFrame,
|
||||
RtlpUnwindInternal(TargetFrame,
|
||||
TargetIp,
|
||||
ExceptionRecord,
|
||||
ReturnValue,
|
||||
|
|
Loading…
Reference in a new issue