rimage: fix build error

Recent changes introduce build error, fix the build
error.

Signed-off-by: Chao Song <chao.song@linux.intel.com>
This commit is contained in:
Chao Song 2023-03-06 16:44:37 +08:00 committed by Liam Girdwood
parent 35bc64467a
commit 5bc201039d
2 changed files with 2 additions and 3 deletions

View File

@ -7,6 +7,7 @@
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <sys/time.h>
#include <rimage/rimage.h>
#include <rimage/css.h>

View File

@ -312,7 +312,7 @@ static int rimage_verify(EVP_PKEY *privkey, enum manver ver,struct hash_context
}
switch (ver) {
case V15 /* fallthrough */
case V15: /* fallthrough */
case V18:
break;
@ -338,8 +338,6 @@ static int rimage_verify(EVP_PKEY *privkey, enum manver ver,struct hash_context
fprintf(stderr, "error: verify %s\n", err_buf);
}
break;
out:
EVP_PKEY_CTX_free(ctx);