From 76c110e1efe57e3634e09670b3a0d34853b0b05e Mon Sep 17 00:00:00 2001 From: Daria Phoebe Brashear Date: Fri, 16 Sep 2022 15:27:32 -0400 Subject: [PATCH] hx509: hx509_verify_path remove spurious fallthrough fallthrough needs to be directly before the next case, and this duplicate inside an else is unneeded --- lib/hx509/cert.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/hx509/cert.c b/lib/hx509/cert.c index 4fce8f21a..3dda886ed 100644 --- a/lib/hx509/cert.c +++ b/lib/hx509/cert.c @@ -2441,7 +2441,6 @@ hx509_verify_path(hx509_context context, * EE checking below. */ type = EE_CERT; - HEIM_FALLTHROUGH; } } HEIM_FALLTHROUGH;