mirror of https://github.com/acidanthera/audk.git
ShellPkg/DrvCfg: Handle memory allocation failure
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
This commit is contained in:
parent
55b1d63de7
commit
58972f5cf7
|
@ -2,7 +2,7 @@
|
||||||
Main file for DrvCfg shell Driver1 function.
|
Main file for DrvCfg shell Driver1 function.
|
||||||
|
|
||||||
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
|
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
|
||||||
Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -57,8 +57,11 @@ FindHiiHandleViaDevPath(
|
||||||
Status = HiiDb->ListPackageLists(HiiDb, EFI_HII_PACKAGE_DEVICE_PATH, NULL, &HandleBufferSize, HandleBuffer);
|
Status = HiiDb->ListPackageLists(HiiDb, EFI_HII_PACKAGE_DEVICE_PATH, NULL, &HandleBufferSize, HandleBuffer);
|
||||||
if (Status == EFI_BUFFER_TOO_SMALL) {
|
if (Status == EFI_BUFFER_TOO_SMALL) {
|
||||||
HandleBuffer = AllocateZeroPool(HandleBufferSize);
|
HandleBuffer = AllocateZeroPool(HandleBufferSize);
|
||||||
ASSERT (HandleBuffer != NULL);
|
if (HandleBuffer == NULL) {
|
||||||
Status = HiiDb->ListPackageLists(HiiDb, EFI_HII_PACKAGE_DEVICE_PATH, NULL, &HandleBufferSize, HandleBuffer);
|
Status = EFI_OUT_OF_RESOURCES;
|
||||||
|
} else {
|
||||||
|
Status = HiiDb->ListPackageLists (HiiDb, EFI_HII_PACKAGE_DEVICE_PATH, NULL, &HandleBufferSize, HandleBuffer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
SHELL_FREE_NON_NULL(HandleBuffer);
|
SHELL_FREE_NON_NULL(HandleBuffer);
|
||||||
|
@ -75,8 +78,12 @@ FindHiiHandleViaDevPath(
|
||||||
Status = HiiDb->ExportPackageLists(HiiDb, HandleBuffer[LoopVariable], &MainBufferSize, MainBuffer);
|
Status = HiiDb->ExportPackageLists(HiiDb, HandleBuffer[LoopVariable], &MainBufferSize, MainBuffer);
|
||||||
if (Status == EFI_BUFFER_TOO_SMALL) {
|
if (Status == EFI_BUFFER_TOO_SMALL) {
|
||||||
MainBuffer = AllocateZeroPool(MainBufferSize);
|
MainBuffer = AllocateZeroPool(MainBufferSize);
|
||||||
ASSERT (MainBuffer != NULL);
|
if (MainBuffer != NULL) {
|
||||||
Status = HiiDb->ExportPackageLists(HiiDb, HandleBuffer[LoopVariable], &MainBufferSize, MainBuffer);
|
Status = HiiDb->ExportPackageLists (HiiDb, HandleBuffer[LoopVariable], &MainBufferSize, MainBuffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (EFI_ERROR (Status)) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Enumerate through the block of returned memory.
|
// Enumerate through the block of returned memory.
|
||||||
|
|
Loading…
Reference in New Issue