X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2FSource%2FC%2FGenVtf%2FGenVtf.c;h=a61502f3151e9ede3428ba49951fea1bfa2a891d;hp=006822a79b08fd63ff0b55587a15edaf89910afc;hb=399caf2d14b4e933fc1f0050f29d290359ba3614;hpb=77e4cf5f11ed4543cbd91a9c45c7209e36bfd97a diff --git a/BaseTools/Source/C/GenVtf/GenVtf.c b/BaseTools/Source/C/GenVtf/GenVtf.c index 006822a79b..a61502f315 100644 --- a/BaseTools/Source/C/GenVtf/GenVtf.c +++ b/BaseTools/Source/C/GenVtf/GenVtf.c @@ -1232,11 +1232,13 @@ Returns: Vtf1TotalSize += (UINT32) (FileSize + NumAdjustByte); Status = UpdateVtfBuffer (CompStartAddress, Buffer, FileSize, FIRST_VTF); } else { + free (Buffer); Error (NULL, 0, 2000,"Invalid Parameter", "There's component in second VTF so second BaseAddress and Size must be specified!"); return EFI_INVALID_PARAMETER; } if (EFI_ERROR (Status)) { + free (Buffer); return EFI_ABORTED; } @@ -1248,6 +1250,7 @@ Returns: CompFitPtr->CompAddress = CompStartAddress | IPF_CACHE_BIT; if ((FileSize % 16) != 0) { + free (Buffer); Error (NULL, 0, 2000, "Invalid parameter", "Binary FileSize must be a multiple of 16."); return EFI_INVALID_PARAMETER; } @@ -1389,6 +1392,7 @@ Returns: PalFitPtr->CompAddress = PalStartAddress | IPF_CACHE_BIT; //assert ((FileSize % 16) == 0); if ((FileSize % 16) != 0) { + free (Buffer); Error (NULL, 0, 2000, "Invalid parameter", "Binary FileSize must be a multiple of 16."); return EFI_INVALID_PARAMETER; }