public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH] SignedCapsulePkg IniParsingLib: ASSERT to ensure 'Value' is not NULL
@ 2016-11-16  8:26 Hao Wu
  2016-11-16  8:37 ` Yao, Jiewen
  0 siblings, 1 reply; 2+ messages in thread
From: Hao Wu @ 2016-11-16  8:26 UTC (permalink / raw)
  To: edk2-devel; +Cc: Hao Wu, Jiewen Yao

Function GetStringFromDataFile() ensures its fourth (output) parameter
will not be NULL when the return status is EFI_SUCCESS.

This commit adds ASSERT as warnings for the case that will not happen.

Cc: Jiewen Yao <jiewen.yao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
---
 SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c b/SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c
index a8773c1..5c975f7 100644
--- a/SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c
+++ b/SignedCapsulePkg/Library/IniParsingLib/IniParsingLib.c
@@ -1257,6 +1257,7 @@ GetGuidFromDataFile (
   if (EFI_ERROR(Status)) {
     return EFI_NOT_FOUND;
   }
+  ASSERT (Value != NULL);
   if (!IsValidGuid(Value, AsciiStrLen(Value))) {
     return EFI_NOT_FOUND;
   }
@@ -1303,6 +1304,7 @@ GetDecimalUintnFromDataFile (
   if (EFI_ERROR(Status)) {
     return EFI_NOT_FOUND;
   }
+  ASSERT (Value != NULL);
   if (!IsValidDecimalString(Value, AsciiStrLen(Value))) {
     return EFI_NOT_FOUND;
   }
@@ -1346,6 +1348,7 @@ GetHexUintnFromDataFile (
   if (EFI_ERROR(Status)) {
     return EFI_NOT_FOUND;
   }
+  ASSERT (Value != NULL);
   if (!IsValidHexString(Value, AsciiStrLen(Value))) {
     return EFI_NOT_FOUND;
   }
@@ -1389,6 +1392,7 @@ GetHexUint64FromDataFile (
   if (EFI_ERROR(Status)) {
     return EFI_NOT_FOUND;
   }
+  ASSERT (Value != NULL);
   if (!IsValidHexString(Value, AsciiStrLen(Value))) {
     return EFI_NOT_FOUND;
   }
-- 
1.9.5.msysgit.0



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

end of thread, other threads:[~2016-11-16  8:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-16  8:26 [PATCH] SignedCapsulePkg IniParsingLib: ASSERT to ensure 'Value' is not NULL Hao Wu
2016-11-16  8:37 ` Yao, Jiewen

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