Skip to content

Commit

Permalink
Merged PR 972782: [TCBZ2820] Initialize variables in FwVol.c (PrePiLi…
Browse files Browse the repository at this point in the history
…b) for ARM64

First batch of changes to permit VS2017 ARM64 tools to build required elements.

Related work items: #14268301
  • Loading branch information
kkennett authored and kenlautner committed Dec 18, 2023
1 parent 363ff16 commit df22fd8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions EmbeddedPkg/Library/PrePiLib/FwVol.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,13 @@ FfsProcessSection (
CHAR8 *CompressedData;
UINT32 CompressedDataLength;
BOOLEAN Found;

Found = FALSE;
*OutputBuffer = NULL;
ParsedLength = 0;
Status = EFI_NOT_FOUND;

*OutputBuffer = NULL;
ParsedLength = 0;
Status = EFI_NOT_FOUND;
ScratchBufferSize = 0; // MU_CHANGE
DstBufferSize = 0; // MU_CHANGE
while (ParsedLength < SectionSize) {
if (IS_SECTION2 (Section)) {
ASSERT (SECTION2_SIZE (Section) > 0x00FFFFFF);
Expand Down

0 comments on commit df22fd8

Please sign in to comment.