Add more check for index whether exceed maximum value of fv count.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2115 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2006-12-19 02:52:11 +00:00
parent 95ed6470d1
commit a720748034
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ Returns:
// //
// Use the next free slot for a new entry // Use the next free slot for a new entry
// //
UpdateIndex = mFvbCount++;; UpdateIndex = mFvbCount++;
ASSERT (UpdateIndex < MAX_FVB_COUNT);
mFvbEntry[UpdateIndex].Handle = Handle; mFvbEntry[UpdateIndex].Handle = Handle;
} }
// //