- Correct which entry was being modified.
Modified: trunk/reactos/lib/rtl/unicodeprefix.c
_____
Modified: trunk/reactos/lib/rtl/unicodeprefix.c
--- trunk/reactos/lib/rtl/unicodeprefix.c 2005-11-07 21:16:30 UTC
(rev 19043)
+++ trunk/reactos/lib/rtl/unicodeprefix.c 2005-11-07 21:17:49 UTC
(rev 19044)
@@ -269,12 +269,12 @@
else if (RtlIsLeftChild(&PrefixTableEntry->Links))
{
/* We were the left child, so make us as well */
- Entry->Links.LeftChild = &Entry->Links;
+ PrefixTableEntry->Links.LeftChild = &Entry->Links;
}
else
{
/* 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 */
Show replies by date