[U-Boot] [PATCH v4 1/2] mkimage: Fix missing free() in show_valid_options()
Simon Glass
sjg at chromium.org
Mon Oct 31 17:13:05 CET 2016
The allocated memory should be freed. Fix it.
Signed-off-by: Simon Glass <sjg at chromium.org>
Reported-by: Coverity (CID: 150963)
Reviewed-by: Tom Rini <trini at konsulko.com>
---
Changes in v4: None
Changes in v3: None
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
More information about the U-Boot
mailing list