X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;ds=sidebyside;f=EmbeddedPkg%2FLibrary%2FPrePiLib%2FFwVol.c;h=0dec29efe9e6e7c2457aebba191f8f7647b214e5;hb=c1cdcab9526506673b882017845a043cead8bc69;hp=9e4cdd002ec6143df77120186e95aa732d8ee225;hpb=70f1d5e75655dc71142d363df809c25d07c3e99d;p=mirror_edk2.git diff --git a/EmbeddedPkg/Library/PrePiLib/FwVol.c b/EmbeddedPkg/Library/PrePiLib/FwVol.c index 9e4cdd002e..0dec29efe9 100644 --- a/EmbeddedPkg/Library/PrePiLib/FwVol.c +++ b/EmbeddedPkg/Library/PrePiLib/FwVol.c @@ -293,7 +293,7 @@ FfsProcessSection ( UINT32 SectionLength; UINT32 ParsedLength; EFI_COMPRESSION_SECTION *CompressionSection; - UINTN DstBufferSize; + UINT32 DstBufferSize; VOID *ScratchBuffer; UINT32 ScratchBufferSize; VOID *DstBuffer; @@ -322,13 +322,13 @@ FfsProcessSection ( Status = UefiDecompressGetInfo ( (UINT8 *) ((EFI_COMPRESSION_SECTION *) Section + 1), (UINT32) SectionLength - sizeof (EFI_COMPRESSION_SECTION), - (UINT32 *) &DstBufferSize, + &DstBufferSize, &ScratchBufferSize ); } else if (Section->Type == EFI_SECTION_GUID_DEFINED) { Status = ExtractGuidedSectionGetInfo ( Section, - (UINT32 *) &DstBufferSize, + &DstBufferSize, &ScratchBufferSize, &SectionAttribute );