BaseMemoryLib: Add missing ASSERT()s for some interfaces.
BaseTimerLibLocalApic: Add missing EBC architecture support. Note that this instance is a dummy one since EBC does not support local APIC timer. IoLibDxeCpuIo: Add alignment checking & unsupported width checking by using ASSERT()s. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@311 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -119,6 +119,14 @@ ScanGuid (
|
||||
{
|
||||
CONST GUID *GuidPtr;
|
||||
|
||||
ASSERT (Buffer != NULL);
|
||||
//
|
||||
// Make sure Buffer is aligned on a 64-bit boundary.
|
||||
//
|
||||
ASSERT (((UINTN) Buffer & 7) == 0);
|
||||
|
||||
ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
|
||||
|
||||
GuidPtr = (GUID*)Buffer;
|
||||
Buffer = GuidPtr + Length / sizeof (*GuidPtr);
|
||||
while (GuidPtr < (CONST GUID*)Buffer) {
|
||||
|
Reference in New Issue
Block a user