diff options
author | Heinrich Schuchardt | 2019-03-19 18:36:21 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2019-03-20 18:16:53 +0100 |
commit | e7dae584b05feaf507c5b85a704a2c1d25abffc9 (patch) | |
tree | 2fc85387067ada44522b7aa923ede03f04eeb263 | |
parent | bd3b7478d1e17b4d487d276f5cc0e4f4ef9fc4b7 (diff) |
efi_loader: missing return in efi_get_next_variable_name()
Add a missing return statement in efi_get_next_variable_name().
Reported-by: Coverity (CID 185834)
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/efi_variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index e0d7f5736db..699f4184d93 100644 --- a/lib/efi_loader/efi_variable.c +++ b/lib/efi_loader/efi_variable.c @@ -335,7 +335,7 @@ efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size, EFI_ENTRY("%p \"%ls\" %pUl", variable_name_size, variable_name, vendor); if (!variable_name_size || !variable_name || !vendor) - EFI_EXIT(EFI_INVALID_PARAMETER); + return EFI_EXIT(EFI_INVALID_PARAMETER); if (variable_name[0]) { /* check null-terminated string */ |