mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
- Correct which entry was being modified.
svn path=/trunk/; revision=19044
This commit is contained in:
parent
9009aaf27c
commit
214e15e351
1 changed files with 2 additions and 2 deletions
|
@ -269,12 +269,12 @@ RtlRemoveUnicodePrefix(PUNICODE_PREFIX_TABLE PrefixTable,
|
||||||
else if (RtlIsLeftChild(&PrefixTableEntry->Links))
|
else if (RtlIsLeftChild(&PrefixTableEntry->Links))
|
||||||
{
|
{
|
||||||
/* We were the left child, so make us as well */
|
/* We were the left child, so make us as well */
|
||||||
Entry->Links.LeftChild = &Entry->Links;
|
PrefixTableEntry->Links.LeftChild = &Entry->Links;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* We were the right child, so make us as well */
|
/* We were the right child, so make us as well */
|
||||||
Entry->Links.RightChild = &Entry->Links;
|
PrefixTableEntry->Links.RightChild = &Entry->Links;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check if we have a left child */
|
/* Check if we have a left child */
|
||||||
|
|
Loading…
Reference in a new issue