BDS code calls Hii->FindHandles() with hardcoded length.
New code provides function BdsLibGetHiiHandles() in generic BDS library, which detects actual necessary memory, allocates memory, and finds handles as output. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2216 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -485,15 +485,16 @@ Returns:
|
||||
UINT16 Length;
|
||||
EFI_GUID HiiGuid;
|
||||
|
||||
HandleBufferLength = 0x1000;
|
||||
//
|
||||
// Initialize params.
|
||||
//
|
||||
HandleBufferLength = 0;
|
||||
HiiHandleBuffer = NULL;
|
||||
|
||||
//
|
||||
// Get all the Hii handles
|
||||
//
|
||||
HiiHandleBuffer = AllocateZeroPool (HandleBufferLength);
|
||||
|
||||
Status = Hii->FindHandles (Hii, &HandleBufferLength, HiiHandleBuffer);
|
||||
Status = BdsLibGetHiiHandles (Hii, &HandleBufferLength, &HiiHandleBuffer);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user