mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[RTL] Minor formatting, remove redundant 'return'.
This commit is contained in:
@@ -338,7 +338,6 @@ RtlpGetStackLimits(
|
||||
{
|
||||
*LowLimit = (ULONG_PTR)NtCurrentTeb()->NtTib.StackLimit;
|
||||
*HighLimit = (ULONG_PTR)NtCurrentTeb()->NtTib.StackBase;
|
||||
return;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
|
||||
@@ -513,13 +513,13 @@ RtlpGetStackLimits(
|
||||
OUT PULONG_PTR HighLimit)
|
||||
{
|
||||
PKTHREAD CurrentThread = KeGetCurrentThread();
|
||||
*LowLimit = (ULONG_PTR)CurrentThread->StackLimit;
|
||||
#ifdef _M_IX86
|
||||
* HighLimit = (ULONG_PTR)CurrentThread->InitialStack -
|
||||
*HighLimit = (ULONG_PTR)CurrentThread->InitialStack -
|
||||
sizeof(FX_SAVE_AREA);
|
||||
#else
|
||||
*HighLimit = (ULONG_PTR)CurrentThread->InitialStack;
|
||||
#endif
|
||||
*LowLimit = (ULONG_PTR)CurrentThread->StackLimit;
|
||||
}
|
||||
|
||||
/* RTL Atom Tables ************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user