diff options
author | Bin Meng <bin.meng@windriver.com> | 2020-04-18 01:59:11 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-24 10:51:56 -0400 |
commit | 0dbd6e3698b58f60cddb64a0d58a4e23fb5f55d3 (patch) | |
tree | 6b6c55c68a7d2c8699d119a78a5fce596a13affd /tools | |
parent | 3fc85a782a3d46fcb32bfb93829d2424d696c4d3 (diff) |
mkimage: fit: Free buf directly in fit_extract_data()
If given ptr to free() is NULL, no operation is performed.
Hence we can just free buf directly in fit_extract_data().
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/fit_image.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/fit_image.c b/tools/fit_image.c index c37cae3b260..4aeabbcfe97 100644 --- a/tools/fit_image.c +++ b/tools/fit_image.c @@ -534,8 +534,7 @@ static int fit_extract_data(struct image_tool_params *params, const char *fname) err_munmap: munmap(fdt, sbuf.st_size); err: - if (buf) - free(buf); + free(buf); close(fd); return ret; } |