projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6f70a3
)
mkimage: Fix munmap() call when importing data
author
Simon Glass
<sjg@chromium.org>
Wed, 16 Mar 2016 13:45:31 +0000
(07:45 -0600)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/tools/fit_image.c
b/tools/fit_image.c
index
3ecc88f
..
2c8d92f
100644
(file)
--- a/
tools/fit_image.c
+++ b/
tools/fit_image.c
@@
-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 */