From: Ard Biesheuvel Date: Wed, 25 Mar 2020 09:30:07 +0000 (+0100) Subject: ArmVirtPkg/PlatformPeiLib: add dummy assignment to work around older GCC X-Git-Tag: edk2-stable202005~294 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=f52b30e73ddee9a3a609a6e5aa87e79cf4f50879 ArmVirtPkg/PlatformPeiLib: add dummy assignment to work around older GCC Older GCC (<= 4.9) fail to infer that Parent is never used unless it has been assigned before, and may throw an error like /work/git/edk2/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c: In function ‘PlatformPeim’: /work/git/edk2/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c:132:24: error: ‘Parent’ may be used uninitialized in this function [-Werror=maybe-uninitialized] RangesProp = fdt_getprop (Base, Parent, "ranges", &RangesLen); Set Parent to 0 at the start of the sequence to work around this. Link: https://bugzilla.tianocore.org/show_bug.cgi?id=2601 Fixes: 82662a3b5f56e974 ("ArmVirtPkg/PlatformPeiLib: discover the TPM base ...") Signed-off-by: Ard Biesheuvel Reviewed-by: Laszlo Ersek --- diff --git a/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c b/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c index 8b5b3dd5dc..6c4028e179 100644 --- a/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c +++ b/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.c @@ -77,6 +77,11 @@ PlatformPeim ( TpmBase = 0; + // + // Set Parent to suppress incorrect compiler/analyzer warnings. + // + Parent = 0; + for (Prev = Depth = 0;; Prev = Node) { Node = fdt_next_node (Base, Prev, &Depth); if (Node < 0) {