[U-Boot] [PATCH 1/2] mkimage: Fix missing free() in show_valid_options()
Simon Glass
sjg at chromium.org
Wed Oct 26 21:19:11 CEST 2016
The allocated memory should be freed. Fix it.
Signed-off-by: Simon Glass <sjg at chromium.org>
Reported-by: Coverity (CID: 150963)
---
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