[U-Boot] [PATCH 1/1] efi_loader: remove superfluous check in efi_setup_loaded_image()

19 Mar
2019
19 Mar
'19
7:01 p.m.
It does not make any sense to check if a pointer is NULL if we have dereferenced it before.
Fixes Coverity CID 185827
Signed-off-by: Heinrich Schuchardt xypron.glpk@gmx.de --- lib/efi_loader/efi_boottime.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index bd8b8a17ae7..4fc550d9f37 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -1581,10 +1581,8 @@ efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path, goto failure; #endif
- if (info_ptr) - *info_ptr = info; - if (handle_ptr) - *handle_ptr = obj; + *info_ptr = info; + *handle_ptr = obj;
return ret; failure: -- 2.20.1
2244
Age (days ago)
2244
Last active (days ago)
0 comments
1 participants
participants (1)
-
Heinrich Schuchardt