[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Fri Jun 16 20:11:19 UTC 2017


The branch master has been updated
       via  5511101ad86fdd5bc3ad4f27143e93ae14737bfe (commit)
      from  f8baec39245ec434da00b690058792611cf08d47 (commit)


- Log -----------------------------------------------------------------
commit 5511101ad86fdd5bc3ad4f27143e93ae14737bfe
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Fri Jun 16 16:10:11 2017 -0400

    Add a missing break in test/shlibloadtest.c
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3661)

-----------------------------------------------------------------------

Summary of changes:
 test/shlibloadtest.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/shlibloadtest.c b/test/shlibloadtest.c
index 8c27bfc..c57ca8f 100644
--- a/test/shlibloadtest.c
+++ b/test/shlibloadtest.c
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.
  *
  * Licensed under the OpenSSL license (the "License").  You may not use
  * this file except in compliance with the License.  You can obtain a copy
@@ -117,6 +117,7 @@ static int test_lib(void)
         if (!TEST_true(shlib_load(path_crypto, &cryptolib))
                 || !TEST_true(shlib_load(path_ssl, &ssllib)))
             goto end;
+        break;
     case SSL_FIRST:
         if (!TEST_true(shlib_load(path_ssl, &ssllib))
                 || !TEST_true(shlib_load(path_crypto, &cryptolib)))
@@ -158,6 +159,7 @@ static int test_lib(void)
         if (!TEST_true(shlib_close(cryptolib))
                 || !TEST_true(shlib_close(ssllib)))
             goto end;
+        break;
     case SSL_FIRST:
         if (!TEST_true(shlib_close(ssllib))
                 || !TEST_true(shlib_close(cryptolib)))


More information about the openssl-commits mailing list