]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Make use of ntests variable, pointed out by clang 13.
authoranton@openbsd.org <anton@openbsd.org>
Sat, 18 Dec 2021 06:53:59 +0000 (06:53 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 20 Dec 2021 01:16:49 +0000 (12:16 +1100)
OpenBSD-Regress-ID: 4241a3d21bdfa1630ed429b6d4fee51038d1be72

regress/unittests/sshbuf/test_sshbuf_fuzz.c

index e3f570be46abdf783664217840745f45836decde..c0b809dcde1b183385638772019bd1d14659e886 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test_sshbuf_fuzz.c,v 1.3 2021/12/14 21:25:27 deraadt Exp $ */
+/*     $OpenBSD: test_sshbuf_fuzz.c,v 1.4 2021/12/18 06:53:59 anton Exp $ */
 /*
  * Regress test for sshbuf.h buffer API
  *
@@ -45,7 +45,7 @@ sshbuf_fuzz_tests(void)
        ASSERT_PTR_NE(p1, NULL);
        ASSERT_PTR_NE(sshbuf_ptr(p1), NULL);
        ASSERT_MEM_ZERO_NE(sshbuf_ptr(p1), sshbuf_len(p1));
-       for (i = 0; i < NUM_FUZZ_TESTS; i++) {
+       for (i = 0; i < ntests; i++) {
                r = arc4random_uniform(10);
                if (r == 0) {
                        /* 10% chance: small reserve */