From b10a5db99b3dc600dbc2bcb0285204a7b9a669bf Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 21 Sep 2020 06:04:53 +0000 Subject: move a misplaced 'goto done;' so that all invalid uris are tested --- src/regress/lib/libcrypto/x509/constraints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regress/lib/libcrypto/x509/constraints.c b/src/regress/lib/libcrypto/x509/constraints.c index 4885ca97b1..7eef55d591 100644 --- a/src/regress/lib/libcrypto/x509/constraints.c +++ b/src/regress/lib/libcrypto/x509/constraints.c @@ -344,8 +344,8 @@ test_invalid_uri(void) { FAIL("invalid URI '%s' accepted\n", invaliduri[j]); failure = 1; + goto done; } - goto done; } done: return failure; -- cgit v1.2.3-55-g6feb