mirror of https://github.com/acidanthera/audk.git
FmpDevicePkg FmpDxe: Use local variable to store test key digest size
Some static tool reports "the condition in 'if' statement is constant". This patch updates the code to use local variable to store test key digest size. It can pass the static tool's check. Cc: Michael D Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
This commit is contained in:
parent
a6d73269b1
commit
d7fb5a4632
|
@ -53,12 +53,14 @@ DetectTestKey (
|
|||
UINT8 *PublicKeyDataXdrEnd;
|
||||
VOID *HashContext;
|
||||
UINT8 Digest[SHA256_DIGEST_SIZE];
|
||||
UINTN TestKeyDigestSize;
|
||||
|
||||
//
|
||||
// If PcdFmpDeviceTestKeySha256Digest is not exacty SHA256_DIGEST_SIZE bytes,
|
||||
// then skip the test key detection.
|
||||
//
|
||||
if (PcdGetSize (PcdFmpDeviceTestKeySha256Digest) != SHA256_DIGEST_SIZE) {
|
||||
TestKeyDigestSize = PcdGetSize (PcdFmpDeviceTestKeySha256Digest);
|
||||
if (TestKeyDigestSize != SHA256_DIGEST_SIZE) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue