diff options
Diffstat (limited to 'MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c')
-rw-r--r-- | MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c b/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c index b11f13f16d..3b93633e5c 100644 --- a/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c +++ b/MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLib.c @@ -133,10 +133,14 @@ EFIAPI ReportStatusCodeExtractDebugInfo (
IN CONST EFI_STATUS_CODE_DATA *Data,
OUT UINT32 *ErrorLevel,
- OUT VA_LIST *Marker,
+ OUT BASE_LIST *Marker,
OUT CHAR8 **Format
)
{
+ ASSERT (Data != NULL);
+ ASSERT (ErrorLevel != NULL);
+ ASSERT (StartOfBuffer != NULL);
+
return FALSE;
}
|