1
0
Fork 0

fit_image: Fix a double close() on the error path

There is an extra close() call which is not needed.

Reported-by: Coverity (CID: 143065)
Signed-off-by: Simon Glass <sjg@chromium.org>
utp
Simon Glass 2016-05-01 17:12:24 -06:00 committed by Tom Rini
parent 925c97c248
commit 4c1dc1a90f
1 changed files with 0 additions and 1 deletions

View File

@ -343,7 +343,6 @@ static int fit_build(struct image_tool_params *params, const char *fname)
if (ret != size) {
fprintf(stderr, "%s: Can't write %s: %s\n",
params->cmdname, fname, strerror(errno));
close(fd);
goto err;
}
close(fd);