Skip to content

Commit

Permalink
rimage: ext_manifest: check fwrite status
Browse files Browse the repository at this point in the history
Check fwrite status for error

Signed-off-by: Adrian Bonislawski <[email protected]>
  • Loading branch information
abonislawski committed Nov 28, 2023
1 parent 0d81e4a commit 5de8e76
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/rimage/src/ext_manifest.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,12 @@ int ext_man_write_cavs_25(struct image *image)

for (i = 0; i < count; i++)
header.len += mod_ext->ext_mod_config_array[i].header.ext_module_config_length;
fwrite(&header, sizeof(header), 1, image->out_ext_man_fd);
write_ret = fwrite(&header, sizeof(header), 1, image->out_ext_man_fd);
if (write_ret != 1) {
ret = file_error("can't write fw_ext_man_cavs_header",
image->out_ext_man_file);
goto out;
}

for (i = 0; i < count; i++) {
write_ret = fwrite(&mod_ext->ext_mod_config_array[i].header,
Expand Down

0 comments on commit 5de8e76

Please sign in to comment.