From 02d976a3dfeaaabaa9cdc49151bca98da076a9a7 Mon Sep 17 00:00:00 2001 From: Bruno Meneguele Date: Wed, 15 Jul 2020 18:39:04 -0300 Subject: [PATCH] ima-evm-utils: fix empty label at end of function. Distros running older OpenSSL versions (<= 1.1) fail to build due to the empty label at the end of calc_bootaggr(). For these, that label is no-op. Signed-off-by: Bruno Meneguele Signed-off-by: Mimi Zohar --- src/evmctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evmctl.c b/src/evmctl.c index f910e27..f53ba73 100644 --- a/src/evmctl.c +++ b/src/evmctl.c @@ -2180,7 +2180,7 @@ out: #if OPENSSL_VERSION_NUMBER >= 0x10100000 EVP_MD_CTX_free(pctx); #endif - + return; } /*