1
0
Fork 0

part_efi: Drop NULL check in part_get_info_efi()

This cannot be NULL since part_get_info() calls this function and requires
it to be non-NULL.

Reported-by: Coverity (CID: 138497)

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
utp
Simon Glass 2016-03-16 07:45:36 -06:00 committed by Tom Rini
parent 5f095f0c7a
commit 4708a07c7c
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ int part_get_info_efi(struct blk_desc *dev_desc, int part,
gpt_entry *gpt_pte = NULL;
/* "part" argument must be at least 1 */
if (!dev_desc || !info || part < 1) {
if (part < 1) {
printf("%s: Invalid Argument(s)\n", __func__);
return -1;
}