]> Git Repo - u-boot.git/commitdiff
mkimage: Add a missing free() to fit_import_data()
authorSimon Glass <[email protected]>
Wed, 16 Mar 2016 13:45:38 +0000 (07:45 -0600)
committerTom Rini <[email protected]>
Tue, 22 Mar 2016 16:16:20 +0000 (12:16 -0400)
The space allocated to fdt is not freed on error. Fix it.

Reported-by: Coverity (CID: 138494)
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
tools/fit_image.c

index 8a93ea33f921cc0bdf55c51a2f9bc78a888f34e1..8d58370d87fc945b291c50b154900ed4834f75b6 100644 (file)
@@ -541,6 +541,7 @@ static int fit_import_data(struct image_tool_params *params, const char *fname)
        ret = 0;
 
 err:
+       free(fdt);
        close(fd);
        return ret;
 }
This page took 0.03541 seconds and 4 git commands to generate.