]> git.sur5r.net Git - u-boot/commitdiff
mkimage: Fix munmap() call when importing data
authorSimon Glass <sjg@chromium.org>
Wed, 16 Mar 2016 13:45:31 +0000 (07:45 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 22 Mar 2016 16:16:17 +0000 (12:16 -0400)
The munmap() call unmaps the wrong memory buffer. Fix it.

Reported-by: Coverity (CID: 138505)
Reported-by: Coverity (CID: 138495)
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
tools/fit_image.c

index 3ecc88fb56589e6e666c0e782059096f980c2e6b..2c8d92f88da5545675dc8175bddadf8cfa44fa09 100644 (file)
@@ -517,7 +517,7 @@ static int fit_import_data(struct image_tool_params *params, const char *fname)
                }
        }
 
-       munmap(fdt, sbuf.st_size);
+       munmap(old_fdt, sbuf.st_size);
        close(fd);
 
        /* Pack the FDT and place the data after it */