From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by mx.groups.io with SMTP id smtpd.web11.7868.1620994651920370604 for ; Fri, 14 May 2021 05:17:32 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@posteo.net header.s=2017 header.b=U2CxgcN7; spf=pass (domain: posteo.net, ip: 185.67.36.66, mailfrom: sergei@posteo.net) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id B8D692400FC for ; Fri, 14 May 2021 14:17:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1620994648; bh=FSkrKnu6JjLShaFN/FQFPVMDldqB7kImFxh9h/Wrgs0=; h=From:To:Subject:Date:From; b=U2CxgcN7O665sgyJonGKHOFmjHkN9JFSlA1VPQr2bMnI9uqI5ceb2YlNwo/SmzVEp EgAdTuKxDv5gMLbGyaPgSnsu7QOF/EsQNOuegiNzITGltio+s++ZcPljaYd1pD+yCZ khbu+4t0lgwZ3gGXzsev03GNsmCa3VDEbck4W8CwJkEd6zP3pcY8tg4mCNUAwP1Bt8 v26nbRqTFmE3iSBk41rTea89MpkpTfIYJ5bB703iHuq2G/EJBpNxE+CLHU030tJZjK iZ8CZYKpb4mXvppVa5nHmWg6KfjLOv9S1yLeUznn2OFtGwwm6Lb1tkUyHhwWVUSsL7 gJsCodMAIzl1Q== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4FhSG0005fz9rxS for ; Fri, 14 May 2021 14:17:27 +0200 (CEST) From: "Sergei Dmitrouk" To: devel@edk2.groups.io Subject: [PATCH v1 0/3] Fix possible uninitialized uses Date: Fri, 14 May 2021 12:17:11 +0000 Message-Id: <20210514121714.17312-1-sergei@posteo.net> Compiling for IA32 target with gcc-5.5.0 emits "maybe-uninitialized" warnings. Compilation command: build -a IA32 -p OvmfPkg/OvmfPkgIa32.dsc -t GCC49 Unlike other cases mentioned in https://bugzilla.tianocore.org/show_bug.cgi?id=3228 these seem to be actual issues in the code. Read patches for specifics. Sergei Dmitrouk (3): ShellPkg/HttpDynamicCommand: Fix possible uninitialized use MdeModulePkg/PciBusDxe: Fix possible uninitialized use CryptoPkg/BaseCryptLib: Fix possible uninitialized use CryptoPkg/Library/BaseCryptLib/Pk/CryptRsaPss.c | 1 + CryptoPkg/Library/BaseCryptLib/Pk/CryptRsaPssSign.c | 1 + MdeModulePkg/Bus/Pci/PciBusDxe/PciLib.c | 5 +++++ ShellPkg/DynamicCommand/HttpDynamicCommand/Http.c | 1 + 4 files changed, 8 insertions(+) -- 2.17.6