summaryrefslogtreecommitdiffstats
path: root/FmpDevicePkg/FmpDxe/FmpDxe.c
diff options
context:
space:
mode:
authorGuoMinJ <newexplorerj@gmail.com>2020-02-13 16:33:46 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-02-14 07:27:28 +0000
commit466b877f43b66d783f84efa691a602fc6c905356 (patch)
treec556ba029cbf1d4e34921f7c7aee4ad958f12a6f /FmpDevicePkg/FmpDxe/FmpDxe.c
parent5b45b44e6f303dd421110a109ff5cfc2ae8f7555 (diff)
downloadedk2-466b877f43b66d783f84efa691a602fc6c905356.tar.gz
edk2-466b877f43b66d783f84efa691a602fc6c905356.tar.bz2
edk2-466b877f43b66d783f84efa691a602fc6c905356.zip
FmpDevicePkg/FmpDxe: Issues reported by ECC in EDK2.
https://bugzilla.tianocore.org/show_bug.cgi?id=2515 Change the FmpDevicePkg to match the ECC check rule Signed-off-by: GuoMinJ <newexplorerj@gmail.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'FmpDevicePkg/FmpDxe/FmpDxe.c')
-rw-r--r--FmpDevicePkg/FmpDxe/FmpDxe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FmpDevicePkg/FmpDxe/FmpDxe.c b/FmpDevicePkg/FmpDxe/FmpDxe.c
index aa92331966..5b523291e4 100644
--- a/FmpDevicePkg/FmpDxe/FmpDxe.c
+++ b/FmpDevicePkg/FmpDxe/FmpDxe.c
@@ -413,7 +413,7 @@ PopulateDescriptor (
}
if (!EFI_ERROR (Status) && Image != NULL) {
IsDepexValid = ValidateImageDepex ((EFI_FIRMWARE_IMAGE_DEP *) Image, ImageSize, &DepexSize);
- if (IsDepexValid == TRUE) {
+ if (IsDepexValid) {
Private->Descriptor.Dependencies = AllocatePool (DepexSize);
if (Private->Descriptor.Dependencies != NULL) {
CopyMem (Private->Descriptor.Dependencies->Dependencies, Image, DepexSize);