[RTL/x64] Fix a typo RtplUnwindInternal -> RtlpUnwindInternal (#3912)

This commit is contained in:
Kento Oki 2021-08-16 10:23:02 +09:00 committed by GitHub
parent 6ef6fabfc5
commit 3ba1d82c41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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,