mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
Adds ASSERT check in DxePcd driver when error status of read DynamicHii PCD is not EFI_NOT_FOUND to avoid the incorrect value is used.
Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14147 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
e8654a1a1a
commit
0b1ef27500
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Help functions used by PCD DXE driver.
|
Help functions used by PCD DXE driver.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2013, 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
|
||||||
@ -150,6 +150,11 @@ GetWorker (
|
|||||||
//
|
//
|
||||||
GetPtrTypeSize (TmpTokenNumber, &GetSize);
|
GetPtrTypeSize (TmpTokenNumber, &GetSize);
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
// If the operation is successful, we copy the data
|
||||||
|
// to the default value buffer in the PCD Database.
|
||||||
|
// So that we can free the Data allocated in GetHiiVariable.
|
||||||
|
//
|
||||||
CopyMem (VaraiableDefaultBuffer, Data + VariableHead->Offset, GetSize);
|
CopyMem (VaraiableDefaultBuffer, Data + VariableHead->Offset, GetSize);
|
||||||
FreePool (Data);
|
FreePool (Data);
|
||||||
}
|
}
|
||||||
@ -166,19 +171,14 @@ GetWorker (
|
|||||||
//
|
//
|
||||||
GetPtrTypeSize (TmpTokenNumber, &GetSize);
|
GetPtrTypeSize (TmpTokenNumber, &GetSize);
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
// If the operation is successful, we copy the data
|
||||||
|
// to the default value buffer in the PCD Database.
|
||||||
|
// So that we can free the Data allocated in GetHiiVariable.
|
||||||
|
//
|
||||||
CopyMem (VaraiableDefaultBuffer, Data + VariableHead->Offset, GetSize);
|
CopyMem (VaraiableDefaultBuffer, Data + VariableHead->Offset, GetSize);
|
||||||
FreePool (Data);
|
FreePool (Data);
|
||||||
}
|
}
|
||||||
//
|
|
||||||
// If the operation is successful, we copy the data
|
|
||||||
// to the default value buffer in the PCD Database.
|
|
||||||
// So that we can free the Data allocated in GetHiiVariable.
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// If the operation is not successful,
|
|
||||||
// Return 1) either the default value specified by Platform Integrator
|
|
||||||
// 2) Or the value Set by a PCD set operation.
|
|
||||||
//
|
|
||||||
RetPtr = (VOID *) VaraiableDefaultBuffer;
|
RetPtr = (VOID *) VaraiableDefaultBuffer;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -535,6 +535,12 @@ GetHiiVariable (
|
|||||||
ASSERT (Status == EFI_SUCCESS);
|
ASSERT (Status == EFI_SUCCESS);
|
||||||
*VariableData = Buffer;
|
*VariableData = Buffer;
|
||||||
*VariableSize = Size;
|
*VariableSize = Size;
|
||||||
|
} else {
|
||||||
|
//
|
||||||
|
// Use Default Data only when variable is not found.
|
||||||
|
// For other error status, correct data can't be got, and trig ASSERT().
|
||||||
|
//
|
||||||
|
ASSERT (Status == EFI_NOT_FOUND);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user