mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
remove obsolete check in InterlockedPopEntrySList()
svn path=/trunk/; revision=13710
This commit is contained in:
parent
d2417ffe5a
commit
2ef42901b7
1 changed files with 0 additions and 5 deletions
|
@ -459,11 +459,6 @@ InterlockedPopEntrySList(IN PSLIST_HEADER ListHead)
|
|||
newslh.Sequence = oldslh.Sequence + 1;
|
||||
newslh.Depth = oldslh.Depth - 1;
|
||||
newslh.Next.Next = MmSafeReadPtr(&le->Next);
|
||||
if(newslh.Next.Next == NULL)
|
||||
{
|
||||
/* try again */
|
||||
continue;
|
||||
}
|
||||
} while(ExfInterlockedCompareExchange64(&ListHead->Alignment,
|
||||
&newslh.Alignment,
|
||||
&oldslh.Alignment) != oldslh.Alignment);
|
||||
|
|
Loading…
Reference in a new issue