mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
tools: imx8image: fix coverity CID 184233
Fix: CID 184233: (NEGATIVE_RETURNS) Using variable "container" as an index to array "imx_header.fhdr". Reported-by: Coverity Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
df439e938c
commit
a9f7f1c585
1 changed files with 8 additions and 0 deletions
|
@ -812,6 +812,10 @@ static int build_container(soc_type_t soc, uint32_t sector_size,
|
|||
case SCFW:
|
||||
case DATA:
|
||||
case MSG_BLOCK:
|
||||
if (container < 0) {
|
||||
fprintf(stderr, "No container found\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
check_file(&sbuf, img_sp->filename);
|
||||
tmp_filename = img_sp->filename;
|
||||
set_image_array_entry(&imx_header.fhdr[container],
|
||||
|
@ -825,6 +829,10 @@ static int build_container(soc_type_t soc, uint32_t sector_size,
|
|||
break;
|
||||
|
||||
case SECO:
|
||||
if (container < 0) {
|
||||
fprintf(stderr, "No container found\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
check_file(&sbuf, img_sp->filename);
|
||||
tmp_filename = img_sp->filename;
|
||||
set_image_array_entry(&imx_header.fhdr[container],
|
||||
|
|
Loading…
Reference in a new issue