Fix how GUID is passed to BlInvokeBootProtocol()
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 40s
Builds / ExectOS (i686) (push) Successful in 27s

This commit is contained in:
Rafal Kupiec 2024-01-01 16:16:35 +01:00
parent f4871801a7
commit 89caaa977e
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -40,7 +40,7 @@ BlFindBootProtocol(IN PWCHAR SystemType,
if(RtlCompareWideStringInsensitive(ProtocolEntry->SystemType, SystemType, 0) == 0)
{
/* Boot protocol matched, return success */
BootProtocolGuid = &ProtocolEntry->Guid;
*BootProtocolGuid = ProtocolEntry->Guid;
return STATUS_EFI_SUCCESS;
}