[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Matt Caswell matt at openssl.org
Fri Feb 6 10:18:33 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  04222b630efc936386ce0afb8a678dcc9f16e276 (commit)
      from  16064539aded747bf1632d3fa5f35a5c8ee57348 (commit)


- Log -----------------------------------------------------------------
commit 04222b630efc936386ce0afb8a678dcc9f16e276
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Feb 5 10:19:55 2015 +0000

    Fix error handling in ssltest
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (cherry picked from commit ae632974f905c59176fa5f312826f8f692890b67)

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

Summary of changes:
 ssl/ssltest.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index 0113b65..9f5d586 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -2073,7 +2073,7 @@ int doit(SSL *s_ssl, SSL *c_ssl, long count)
         if (!do_client && !do_server) {
             fprintf(stdout, "ERROR IN STARTUP\n");
             ERR_print_errors(bio_err);
-            break;
+            goto err;
         }
         if (do_client && !(done & C_DONE)) {
             if (c_write) {


More information about the openssl-commits mailing list