diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-15 12:42:46 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-20 22:26:14 +0000 |
commit | 3352b306bf63f79f2dc261b950be12bd41ba8bb1 (patch) | |
tree | 3706ee0afae663dcaa0f2c364cce2430a4f8d1ba /lib | |
parent | 63a458579135c498532e5b47987ed49d09353ce6 (diff) | |
download | u-boot-3352b306bf63f79f2dc261b950be12bd41ba8bb1.zip u-boot-3352b306bf63f79f2dc261b950be12bd41ba8bb1.tar.gz u-boot-3352b306bf63f79f2dc261b950be12bd41ba8bb1.tar.bz2 |
efi_loader: Blt() with incorrect BltOperation
If EFI_GRAPHICS_OUTPUT_PROTOCOL.Blt() is called with an invalid value of
BltOperation return EFI_INVALID_PARAMETER.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_gop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_gop.c b/lib/efi_loader/efi_gop.c index e003823..9428c3b 100644 --- a/lib/efi_loader/efi_gop.c +++ b/lib/efi_loader/efi_gop.c @@ -367,7 +367,7 @@ efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer, dy, width, height, delta, vid_bpp); break; default: - ret = EFI_UNSUPPORTED; + ret = EFI_INVALID_PARAMETER; } if (ret != EFI_SUCCESS) |