efi_loader: fix get_package_list_handle() status

When the HII protocol function get_package_list_handle() is called with an
invalid package list handle, it returns EFI_NOT_FOUND but this is not in
its list of possible status codes as per the EFI specification.
Return EFI_INVALID_PARAMETER instead to fix conformance.

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
This commit is contained in:
Vincent Stehlé 2022-12-13 22:39:09 +01:00 committed by Heinrich Schuchardt
parent 159dbe1fb1
commit c33d389c7a

View File

@ -780,7 +780,7 @@ get_package_list_handle(const struct efi_hii_database_protocol *this,
}
}
return EFI_EXIT(EFI_NOT_FOUND);
return EFI_EXIT(EFI_INVALID_PARAMETER);
}
const struct efi_hii_database_protocol efi_hii_database = {