test: cmd: mbr: Remove unreachable code

Fix an issue reported by Coverity scan, and fix code indentation.

Addresses-Coverity-ID: 467404 ("Control flow issues (DEADCODE)")
Signed-off-by: Alexander Gendin <agendin@matrox.com>
This commit is contained in:
Alexander Gendin 2023-11-08 03:05:19 +00:00 committed by Tom Rini
parent 4808d16333
commit a40f35f069

View File

@ -205,16 +205,14 @@ static unsigned build_mbr_parts(char *buf, size_t buf_size, unsigned num_parts)
bytes_remaining -= cur_str_size;
}
else if (num_parts == 5) {
cur_str_size = sizeof(mbr_parts_p5);
if (cur_str_size + 1 > bytes_remaining)
return 1;
strcat(cur_buf, mbr_parts_p5);
bytes_remaining -= cur_str_size;
else if (num_parts == 5) {
cur_str_size = sizeof(mbr_parts_p5);
if (cur_str_size + 1 > bytes_remaining)
return 1;
strcat(cur_buf, mbr_parts_p5);
bytes_remaining -= cur_str_size;
}
else if (num_parts > 5)
return 1;
}
}
}
}