mirror of https://github.com/acidanthera/audk.git
Update HiiDatabase->ExportPackageLists() service to support NULL HII handle per UEFI spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10979 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
512122dc89
commit
6894561804
|
@ -3287,13 +3287,13 @@ HiiExportPackageLists (
|
|||
HII_DATABASE_RECORD *Node;
|
||||
UINTN UsedSize;
|
||||
|
||||
if (This == NULL || BufferSize == NULL || Handle == NULL) {
|
||||
if (This == NULL || BufferSize == NULL) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
if (*BufferSize > 0 && Buffer == NULL) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
if (!IsHiiHandleValid (Handle)) {
|
||||
if ((Handle != NULL) && (!IsHiiHandleValid (Handle))) {
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue