From 1ba5dcc0a4004b387fcf666dc9fb91343c46030b Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Fri, 2 Aug 2024 18:33:42 +0200 Subject: [PATCH] style: fix clippy warning --- lib/src/modules/pe/authenticode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/modules/pe/authenticode.rs b/lib/src/modules/pe/authenticode.rs index e848b915..c1f8b74d 100644 --- a/lib/src/modules/pe/authenticode.rs +++ b/lib/src/modules/pe/authenticode.rs @@ -755,7 +755,7 @@ fn verify_message_digest( _ => { #[cfg(feature = "logging")] error!("unknown digest algorithm: {:?}", algorithm.oid()); - return false; + false } } }