diff options
author | Heinrich Schuchardt | 2019-06-11 19:00:56 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-06-14 19:18:39 +0200 |
commit | 200000387c2d16fa069af6e176d1fcb886024f4d (patch) | |
tree | 82408dcb5da38e9b7afc45003c0c91bfb246b934 | |
parent | e4afcb2876eeeddd2376c8b07808276b75862498 (diff) |
efi_loader: LoadImage must return EFI_NOT_FOUND
If the file path does not relate to an existing file, LoadImage() must
return EFI_NOT_FOUND.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 7bb0fc2e521..251dfc4ecc4 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -1779,7 +1779,7 @@ efi_status_t efi_load_image_from_path(struct efi_device_path *file_path, /* Open file */ f = efi_file_from_path(file_path); if (!f) - return EFI_DEVICE_ERROR; + return EFI_NOT_FOUND; /* Get file size */ bs = 0; |