commit | 84ca65aa4bd0d03867e9e49805201d0564d3ffb0 | [log] [tgz] |
---|---|---|
author | Andrej Rosano <andrej@inversepath.com> | Wed Oct 14 17:45:40 2015 +0200 |
committer | Tom Rini <trini@konsulko.com> | Mon Oct 19 17:06:16 2015 -0400 |
tree | 4c9b833ed0153b7b771e8d36536e9bc24c294ba0 | |
parent | 81fd858cbe91592b95065263f43bd6d5ddbd12fc [diff] [blame] |
image-fit: Fix signature checking On signature verification failures fit_image_verify() should exit with error. Signed-off-by: Andrej Rosano <andrej@inversepath.com>
diff --git a/common/image-fit.c b/common/image-fit.c index 28f7aa8..c531ee7 100644 --- a/common/image-fit.c +++ b/common/image-fit.c
@@ -1030,8 +1030,10 @@ strlen(FIT_SIG_NODENAME))) { ret = fit_image_check_sig(fit, noffset, data, size, -1, &err_msg); - if (ret) + if (ret) { puts("- "); + goto error; + } else puts("+ "); }