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.320.1621354193829844171 for ; Tue, 18 May 2021 09:09:54 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@posteo.net header.s=2017 header.b=eKmsTp63; 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 DB9EA2400FE for ; Tue, 18 May 2021 18:09:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1621354191; bh=hjMfCvwctqwq0M5EyqAsxRW1pwTRj4kyTgTCk1/tJjY=; h=From:To:Subject:Date:From; b=eKmsTp63fkngvfGZABmwTDq7efp4nVCihr+Me0U5FpKlwukCY+R63tOsxHRhGuJna cYGf8SsihP9BmX7+KXoE2mxxR3bknMHr1GBJKo/HylsIRl4G+4JtmFEDpIX7nbTbut xwwLRt+EjNYOTMetGTBfLCjmrHpiyMURrUkAzQVVnB54sqb4VZ34yi3xgl5IPoJ/4M GCHXFM9JkpdEtDWYcTpMeSBLnl8Q1qerspISKjRTUegJuCqiiFNIMF01qd7MWoUKrd Wraaq8T3iqB64p+TI6YTINW2H1pG1kTvc+TJoPIpgb9Z+kbdPm3rHy8cX0Cfyji+ar RI4X6lWo0D6BA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Fl1DH1rPYz9rxD for ; Tue, 18 May 2021 18:09:51 +0200 (CEST) From: "Sergei Dmitrouk" To: devel@edk2.groups.io Subject: [PATCH v1 0/3] Fix possible uninitialized uses Date: Tue, 18 May 2021 16:09:39 +0000 Message-Id: <20210518160942.17634-1-sergei@posteo.net> v1: 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. v2: Second patch was simplified. 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, 5 insertions(+), 3 deletions(-) -- 2.17.6