mirror of https://github.com/acidanthera/audk.git
Update PCD driver to correctly set the HII type PCDs.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9078 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e0d22735b7
commit
b13151ffb6
|
@ -975,8 +975,10 @@ SetHiiVariable (
|
|||
VOID *Buffer;
|
||||
EFI_STATUS Status;
|
||||
UINT32 Attribute;
|
||||
UINTN SetSize;
|
||||
|
||||
Size = 0;
|
||||
SetSize = 0;
|
||||
|
||||
//
|
||||
// Try to get original variable size information.
|
||||
|
@ -988,14 +990,17 @@ SetHiiVariable (
|
|||
&Size,
|
||||
NULL
|
||||
);
|
||||
|
||||
|
||||
if (Status == EFI_BUFFER_TOO_SMALL) {
|
||||
//
|
||||
// Patch new PCD's value to offset in given HII variable.
|
||||
//
|
||||
|
||||
Buffer = AllocatePool (Size);
|
||||
|
||||
if (Size >= (DataSize + Offset)) {
|
||||
SetSize = Size;
|
||||
} else {
|
||||
SetSize = DataSize + Offset;
|
||||
}
|
||||
Buffer = AllocatePool (SetSize);
|
||||
ASSERT (Buffer != NULL);
|
||||
|
||||
Status = gRT->GetVariable (
|
||||
|
@ -1014,13 +1019,12 @@ SetHiiVariable (
|
|||
VariableName,
|
||||
VariableGuid,
|
||||
Attribute,
|
||||
Size,
|
||||
SetSize,
|
||||
Buffer
|
||||
);
|
||||
|
||||
FreePool (Buffer);
|
||||
return Status;
|
||||
|
||||
} else if (Status == EFI_NOT_FOUND) {
|
||||
//
|
||||
// If variable does not exist, a new variable need to be created.
|
||||
|
|
Loading…
Reference in New Issue