[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Thu Feb 23 23:01:27 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  b5cd178f9dd057a76147ccd307bd3cb0672ac098 (commit)
      from  d9856b5365570852bfd6f6d59dbd4480a11e6c70 (commit)


- Log -----------------------------------------------------------------
commit b5cd178f9dd057a76147ccd307bd3cb0672ac098
Author: Pauli <paul.dale at oracle.com>
Date:   Thu Feb 23 13:46:01 2017 +1000

    Increase the size of the stack buffer to prevent an overflow.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/2721)
    (cherry picked from commit 8fce04ee3540ba3039bb66df34ea3f076a599ab9)

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

Summary of changes:
 crypto/ec/eck_prn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/ec/eck_prn.c b/crypto/ec/eck_prn.c
index dd3f857..3e826cb 100644
--- a/crypto/ec/eck_prn.c
+++ b/crypto/ec/eck_prn.c
@@ -238,7 +238,7 @@ static int print_bin(BIO *fp, const char *name, const unsigned char *buf,
                      size_t len, int off)
 {
     size_t i;
-    char str[128];
+    char str[128 + 1 + 4];
 
     if (buf == NULL)
         return 1;


More information about the openssl-commits mailing list