diff options
author | Simon Glass <sjg@chromium.org> | 2016-03-16 07:45:33 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-22 12:16:18 -0400 |
commit | f980ca3411bac50aa64be3c8fd4c436adfa7cb13 (patch) | |
tree | eedb9d3aa1c54cb06ddc88d86627adfdf4f0cb59 /tools | |
parent | 508b028a4c91afc76f95cecdbb5a9fc1142a29dd (diff) | |
download | u-boot-imx-f980ca3411bac50aa64be3c8fd4c436adfa7cb13.zip u-boot-imx-f980ca3411bac50aa64be3c8fd4c436adfa7cb13.tar.gz u-boot-imx-f980ca3411bac50aa64be3c8fd4c436adfa7cb13.tar.bz2 |
mkimage: Correct file being closed twice in fit_extract_data()
The code flows through to the end of the function, so we don't need another
close() before this. Remove it.
Reported-by: Coverity (CID: 138503)
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/fit_image.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/fit_image.c b/tools/fit_image.c index 31aa43c..8a93ea3 100644 --- a/tools/fit_image.c +++ b/tools/fit_image.c @@ -446,8 +446,6 @@ static int fit_extract_data(struct image_tool_params *params, const char *fname) ret = -EIO; goto err; } - close(fd); - ret = 0; err: |