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

Rich Salz rsalz at openssl.org
Wed Jun 14 13:51:16 UTC 2017


The branch OpenSSL_1_0_2-stable has been updated
       via  f3ce10ba15fc83603848354a3303e68b7ba18419 (commit)
      from  ccefe0e3a5cb1c20a9c860116ad29547659afc13 (commit)


- Log -----------------------------------------------------------------
commit f3ce10ba15fc83603848354a3303e68b7ba18419
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Tue Jun 13 21:22:45 2017 +0200

    Fix a possible crash in dsa_builtin_paramgen2.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3675)
    (cherry picked from commit fb0a64126b8c11a6961dfa1323c3602b591af7df)

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

Summary of changes:
 crypto/dsa/dsa_gen.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/crypto/dsa/dsa_gen.c b/crypto/dsa/dsa_gen.c
index 1fce0f8..21af2e1 100644
--- a/crypto/dsa/dsa_gen.c
+++ b/crypto/dsa/dsa_gen.c
@@ -482,6 +482,8 @@ int dsa_builtin_paramgen2(DSA *ret, size_t L, size_t N,
     } else {
         p = BN_CTX_get(ctx);
         q = BN_CTX_get(ctx);
+        if (q == NULL)
+            goto err;
     }
 
     if (!BN_lshift(test, BN_value_one(), L - 1))


More information about the openssl-commits mailing list