Branch: refs/heads/master
  Home:   https://github.com/tianocore/edk2
  Commit: a5cb67fb8d443c5a0ee25440c0c686a198543bc3
      
https://github.com/tianocore/edk2/commit/a5cb67fb8d443c5a0ee25440c0c686a198543bc3
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c

  Log Message:
  -----------
  MdeModulePkg: PeiMain: fix warning about uninitialized variable

Dispatcher.c:1639:34: error: 'FvMigrationFlags' may be used uninitialized
  in this function [-Werror=maybe-uninitialized]
(((FvMigrationFlags & FLAGS_FV_MIGRATE_BEFORE_PEI_CORE_REENTRY) == 0) ||
                ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


  Commit: 0f12a5f722cee18b55de291d3e4bc9b4248ba9b8
      
https://github.com/tianocore/edk2/commit/0f12a5f722cee18b55de291d3e4bc9b4248ba9b8
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M MdeModulePkg/Core/Dxe/Hand/Handle.c

  Log Message:
  -----------
  MdeModulePkg: fix warning about uninitialized variable

Handle.c:1302:24: error: 'Prot' may be used uninitialized
  in this function [-Werror=maybe-uninitialized]

       *Interface = Prot->Interface;
                    ~~~~^~~~~~~~~~~
cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


  Commit: c58501aa1ab5d1c88d2e9d21d08424b04040f1f1
      
https://github.com/tianocore/edk2/commit/c58501aa1ab5d1c88d2e9d21d08424b04040f1f1
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressMediaSanitize.c

  Log Message:
  -----------
  MdeModulePkg: NvmExpressDxe: fix warning about uninitialized variable

NvmExpressMediaSanitize.c: In function 'NvmExpressMediaClear':
NvmExpressMediaSanitize.c:337:29: error: 'Status' may be used uninitialized
  in this function [-Werror=maybe-uninitialized]

   EFI_STATUS                Status;
                             ^~~~~~
cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


  Commit: ceb87029c50a3fbd59c4ef3e0990da7559fd6ae5
      
https://github.com/tianocore/edk2/commit/ceb87029c50a3fbd59c4ef3e0990da7559fd6ae5
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M SecurityPkg/RandomNumberGenerator/RngDxe/ArmTrng.c

  Log Message:
  -----------
  SecurityPkg/RngDxe: fix warning about uninitialized variable

ArmTrng.c: In function 'GenerateEntropy':
ArmTrng.c:40:15: error: 'Status' may be used uninitialized
  in this function [-Werror=maybe-uninitialized]

   EFI_STATUS  Status;
               ^~~~~~
cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


  Commit: 755d4b9397644e24f592b261213909bc9e50996d
      
https://github.com/tianocore/edk2/commit/755d4b9397644e24f592b261213909bc9e50996d
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M OvmfPkg/Library/GenericQemuLoadImageLib/GenericQemuLoadImageLib.c

  Log Message:
  -----------
  OvmfPkg: fix warning about uninitialized variable

GenericQemuLoadImageLib.c: In function 'QemuLoadKernelImage':
GenericQemuLoadImageLib.c:323:5: error: 'CommandLine' may be used
  uninitialized in this function [-Werror=maybe-uninitialized]
     UnicodeSPrintAsciiFormat (
     ^~~~~~~~~~~~~~~~~~~~~~~~~~
       KernelLoadedImage->LoadOptions,
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       KernelLoadedImage->LoadOptionsSize,
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       "%a%a",
       ~~~~~~~
       (CommandLineSize == 0) ?  "" : CommandLine,
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       (InitrdSize == 0)      ?  "" : " initrd=initrd"
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
       );
       ~
cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


  Commit: 254937f0bca17649b5d213381a38ffe9ff66acec
      
https://github.com/tianocore/edk2/commit/254937f0bca17649b5d213381a38ffe9ff66acec
  Author: Mike Maslenkin <mike.maslen...@gmail.com>
  Date:   2025-01-29 (Wed, 29 Jan 2025)

  Changed paths:
    M ShellPkg/Library/UefiShellDebug1CommandsLib/Dmem.c

  Log Message:
  -----------
  ShellPkg: fix warnings about uninitialized variable

Dmem.c: In function 'GetImageExecutionInfo':
Dmem.c:241:10: error: 'Status' may be used uninitialized
  in this function [-Werror=maybe-uninitialized]
   return Status;
          ^~~~~~
Dmem.c:284:35: note: 'Status' was declared here
   EFI_STATUS                      Status;
                                   ^~~~~~
Dmem.c: In function 'ShellCommandRunDmem':
Dmem.c:586:27: error: 'ConformanceProfileTableAddress' may be used
  uninitialized in this function [-Werror=maybe-uninitialized]

ShellStatus = DisplayConformanceProfiles (ConformanceProfileTableAddress);
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dmem.c:582:27: error: 'ImageExecutionTableAddress' may be used
  uninitialized in this function [-Werror=maybe-uninitialized]

ShellStatus = DisplayImageExecutionEntries (ImageExecutionTableAddress);
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dmem.c:578:27: error: 'RtPropertiesTableAddress' may be used
  uninitialized in this function [-Werror=maybe-uninitialized]

ShellStatus = DisplayRtProperties (RtPropertiesTableAddress);
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

cc1: all warnings being treated as errors

Signed-off-by: Mike Maslenkin <mike.maslen...@gmail.com>


Compare: https://github.com/tianocore/edk2/compare/bba72ffbe1d1...254937f0bca1

To unsubscribe from these emails, change your notification settings at 
https://github.com/tianocore/edk2/settings/notifications


_______________________________________________
edk2-commits mailing list
edk2-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to