mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 17:00:51 +08:00
remove obsolete check in InterlockedPopEntrySList()
svn path=/trunk/; revision=13710
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user