mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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:
committed by
Tom Rini
parent
4808d16333
commit
a40f35f069
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user