https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3ba1d82c414712a191df9f...
commit 3ba1d82c414712a191df9faf1df594125e082e3b Author: Kento Oki hrn832@protonmail.com AuthorDate: Mon Aug 16 10:23:02 2021 +0900 Commit: GitHub noreply@github.com CommitDate: Mon Aug 16 04:23:02 2021 +0300
[RTL/x64] Fix a typo RtplUnwindInternal -> RtlpUnwindInternal (#3912) --- sdk/lib/rtl/amd64/except.c | 4 ++-- sdk/lib/rtl/amd64/unwind.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sdk/lib/rtl/amd64/except.c b/sdk/lib/rtl/amd64/except.c index aebd525774b..1dc9b59c0cd 100644 --- a/sdk/lib/rtl/amd64/except.c +++ b/sdk/lib/rtl/amd64/except.c @@ -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 diff --git a/sdk/lib/rtl/amd64/unwind.c b/sdk/lib/rtl/amd64/unwind.c index af00aeec3bd..4fe42801281 100644 --- a/sdk/lib/rtl/amd64/unwind.c +++ b/sdk/lib/rtl/amd64/unwind.c @@ -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,