From: Christian Storm <[email protected]> The ExitDataSize (2nd) and ExitData (3rd) arguments to BS->StartImage() are pointers, so use NULL.
Signed-off-by: Christian Storm <[email protected]> --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 4c6eeb4..7949218 100644 --- a/main.c +++ b/main.c @@ -195,5 +195,5 @@ EFI_STATUS efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table) INFO(L"Starting %s with watchdog set to %d seconds ...\n", bg_loader_params.payload_path, bg_loader_params.timeout); - return uefi_call_wrapper(BS->StartImage, 3, payload_handle, 0, 0); + return uefi_call_wrapper(BS->StartImage, 3, payload_handle, NULL, NULL); } -- 2.30.0 -- You received this message because you are subscribed to the Google Groups "EFI Boot Guard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/efibootguard-dev/20210203191159.68345-1-christian.storm%40siemens.com.
