[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 BOOLEAN
NTAPI NTAPI
RtplUnwindInternal( RtlpUnwindInternal(
_In_opt_ PVOID TargetFrame, _In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp, _In_opt_ PVOID TargetIp,
_In_ PEXCEPTION_RECORD ExceptionRecord, _In_ PEXCEPTION_RECORD ExceptionRecord,
@ -101,7 +101,7 @@ RtlDispatchException(
} }
/* Call the internal unwind routine */ /* Call the internal unwind routine */
Handled = RtplUnwindInternal(NULL, // TargetFrame Handled = RtlpUnwindInternal(NULL, // TargetFrame
NULL, // TargetIp NULL, // TargetIp
ExceptionRecord, ExceptionRecord,
0, // ReturnValue 0, // ReturnValue

View file

@ -683,7 +683,7 @@ Exit:
*/ */
BOOLEAN BOOLEAN
NTAPI NTAPI
RtplUnwindInternal( RtlpUnwindInternal(
_In_opt_ PVOID TargetFrame, _In_opt_ PVOID TargetFrame,
_In_opt_ PVOID TargetIp, _In_opt_ PVOID TargetIp,
_In_ PEXCEPTION_RECORD ExceptionRecord, _In_ PEXCEPTION_RECORD ExceptionRecord,
@ -907,7 +907,7 @@ RtlUnwindEx(
} }
/* Call the internal function */ /* Call the internal function */
RtplUnwindInternal(TargetFrame, RtlpUnwindInternal(TargetFrame,
TargetIp, TargetIp,
ExceptionRecord, ExceptionRecord,
ReturnValue, ReturnValue,