mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +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
|
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
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue