mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
mkimage: Don't close the file if it wasn't opened
The error path for fit_import_data() is incorrect if the second open() call fails. Reported-by: Coverity (CID: 138489) Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
3bd3a54ac5
commit
5b15a2596f
1 changed files with 2 additions and 2 deletions
|
@ -537,8 +537,8 @@ static int fit_import_data(struct image_tool_params *params, const char *fname)
|
|||
if (fd < 0) {
|
||||
fprintf(stderr, "%s: Can't open %s: %s\n",
|
||||
params->cmdname, fname, strerror(errno));
|
||||
ret = -EIO;
|
||||
goto err;
|
||||
free(fdt);
|
||||
return -EIO;
|
||||
}
|
||||
if (write(fd, fdt, new_size) != new_size) {
|
||||
debug("%s: Failed to write external data to file %s\n",
|
||||
|
|
Loading…
Reference in a new issue