summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/LinkedList.c
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-06 04:07:24 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-06 04:07:24 +0000
commitd9da5f59821732d18bcb8f1cc2c6615e83725b2b (patch)
tree28eca540d50e4663e4c23d531e350d511b331c23 /MdePkg/Library/BaseLib/LinkedList.c
parentd6ac6b76a87152b3a42f2688daadd3ee63f7823b (diff)
downloadedk2-platforms-d9da5f59821732d18bcb8f1cc2c6615e83725b2b.tar.xz
1. Sync LinkedList.c with MWG
2. Fix one bug in Ipf/InterlockedCompareExchange64.s 3. Fix one bug in AsmDisablePaging64() git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@786 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/LinkedList.c')
-rw-r--r--MdePkg/Library/BaseLib/LinkedList.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseLib/LinkedList.c b/MdePkg/Library/BaseLib/LinkedList.c
index a1a2453fde..15ceb584db 100644
--- a/MdePkg/Library/BaseLib/LinkedList.c
+++ b/MdePkg/Library/BaseLib/LinkedList.c
@@ -34,9 +34,6 @@ IsNodeInList (
ASSERT (Node != NULL);
Count = PcdGet32 (PcdMaximumLinkedListLength);
- if (Count != 0) {
- Count++;
- }
Ptr = List;
do {