public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] MdeModulePkg: Initialize local variable value before they are used
@ 2021-03-09  1:24 gaoliming
  2021-03-09  2:10 ` Wu, Hao A
  2021-03-11 17:21 ` [edk2-devel] " Laszlo Ersek
  0 siblings, 2 replies; 6+ messages in thread
From: gaoliming @ 2021-03-09  1:24 UTC (permalink / raw)
  To: devel; +Cc: Jian J Wang, Hao A Wu

This change is to fix the compiler error on GCC49 release build.

Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao A Wu <hao.a.wu@intel.com>
Signed-off-by: Liming Gao <gaoliming@byosoft.com.cn>
---
 MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c                 | 1 +
 .../Library/VariablePolicyHelperLib/VariablePolicyHelperLib.c    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
index e99a812a44..0779f94f9e 100644
--- a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
+++ b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
@@ -1122,6 +1122,7 @@ AhciDmaTransfer (
 
   Map   = NULL;
   PciIo = Instance->PciIo;
+  Status = EFI_SUCCESS;
 
   if (PciIo == NULL) {
     return EFI_INVALID_PARAMETER;
diff --git a/MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.c b/MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.c
index 0c9299c8b0..7822cbf4bb 100644
--- a/MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.c
+++ b/MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.c
@@ -117,6 +117,7 @@ CreateBasicVariablePolicy (
 
   // Now we've gotta determine the total size of the buffer required for
   // the VariablePolicy structure.
+  NameSize  = 0;
   TotalSize = sizeof( VARIABLE_POLICY_ENTRY );
   if (Name != NULL) {
     NameSize = StrnSizeS( Name, MAX_UINT16 );
-- 
2.27.0.windows.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-03-15  2:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-09  1:24 [PATCH] MdeModulePkg: Initialize local variable value before they are used gaoliming
2021-03-09  2:10 ` Wu, Hao A
2021-03-11  1:10   ` 回复: " gaoliming
2021-03-11  1:32     ` [edk2-devel] " Wu, Hao A
2021-03-11 17:21 ` [edk2-devel] " Laszlo Ersek
2021-03-15  2:57   ` 回复: " gaoliming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox