diff options
Diffstat (limited to 'MdePkg/Library/DxeHobLib')
-rw-r--r-- | MdePkg/Library/DxeHobLib/HobLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdePkg/Library/DxeHobLib/HobLib.c b/MdePkg/Library/DxeHobLib/HobLib.c index 810bfa5fbf..d6e9e5fed6 100644 --- a/MdePkg/Library/DxeHobLib/HobLib.c +++ b/MdePkg/Library/DxeHobLib/HobLib.c @@ -56,6 +56,7 @@ HobLibConstructor ( /**
Returns the pointer to the HOB list.
+ ASSERT() if the HOB list returned by GetHobList() is NULL.
This function returns the pointer to first HOB in the list.
@@ -68,6 +69,7 @@ GetHobList ( VOID
)
{
+ ASSERT (mHobList != NULL);
return mHobList;
}
@@ -218,7 +220,6 @@ GetBootModeHob ( EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
- ASSERT (HandOffHob != NULL);
return HandOffHob->BootMode;
}
|