From: Florian Weimer Date: Wed, 7 Aug 2024 12:59:08 +0000 (+0200) Subject: nss: Fix incorrect switch fall-through in tst-nss-gai-actions X-Git-Tag: glibc-2.41~768 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5ce0e960dea325ccf12769681d5ce45f7b7411d;p=thirdparty%2Fglibc.git nss: Fix incorrect switch fall-through in tst-nss-gai-actions This only happened on test failure. Reviewed-by: Adhemerval Zanella --- diff --git a/nss/tst-nss-gai-actions.c b/nss/tst-nss-gai-actions.c index efca6cd183..e42bbd6cae 100644 --- a/nss/tst-nss-gai-actions.c +++ b/nss/tst-nss-gai-actions.c @@ -92,6 +92,7 @@ do_one_test (int action, int family, bool canon) printf ("merge unexpectedly succeeded:\n %s\n", formatted); support_record_failure (); free (formatted); + break; } else return;