mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
- Fix bug in case 2/4 denomination.
svn path=/trunk/; revision=19075
This commit is contained in:
parent
98858edeba
commit
91bbe0cc1f
1 changed files with 4 additions and 4 deletions
|
@ -255,13 +255,13 @@ RtlSplay(PRTL_SPLAY_LINKS Links)
|
|||
/* Case 2 & 4: N is right child of P */
|
||||
else
|
||||
{
|
||||
/* Case 2: P is the left child of G */
|
||||
if (RtlIsLeftChild(P))
|
||||
/* Case 2: P is the right child of G */
|
||||
if (RtlIsRightChild(P))
|
||||
{
|
||||
|
||||
}
|
||||
/* Case 4: P is the right child of G */
|
||||
else if (RtlIsRightChild(P))
|
||||
/* Case 4: P is the left child of G */
|
||||
else if (RtlIsLeftChild(P))
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue