
28 Oct
2016
28 Oct
'16
1:54 a.m.
The allocated memory should be freed. Fix it.
Signed-off-by: Simon Glass sjg@chromium.org Reported-by: Coverity (CID: 150963) Reviewed-by: Tom Rini trini@konsulko.com ---
Changes in v2: None
tools/mkimage.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/tools/mkimage.c b/tools/mkimage.c index 3c594a0..521fa80 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -64,6 +64,7 @@ static int show_valid_options(enum ih_category category) genimg_get_cat_name(category, item)); } fprintf(stderr, "\n"); + free(order);
return 0; }
--
2.8.0.rc3.226.g39d4020