mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[RTL] Minor formatting, remove redundant 'return'.
This commit is contained in:
parent
6a6b5ec22c
commit
cef9f5c4a6
2 changed files with 2 additions and 3 deletions
|
@ -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 ************************************************************/
|
||||
|
|
Loading…
Reference in a new issue