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

Andy Polyakov appro at openssl.org
Thu Dec 10 19:14:54 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  3cd33c42e3460d9351d208c08bea28f57f7465ff (commit)
      from  50053969e39ae055d2aca7a6a8bf39a3e20c1931 (commit)


- Log -----------------------------------------------------------------
commit 3cd33c42e3460d9351d208c08bea28f57f7465ff
Author: Andy Polyakov <appro at openssl.org>
Date:   Wed Dec 9 20:49:12 2015 +0100

    ec/ecp_nistz256_table.c: fix potential misalignment problem with Sun C.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

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

diff --git a/crypto/ec/ecp_nistz256_table.c b/crypto/ec/ecp_nistz256_table.c
index 216d024..2f0797d 100644
--- a/crypto/ec/ecp_nistz256_table.c
+++ b/crypto/ec/ecp_nistz256_table.c
@@ -17,7 +17,7 @@ __attribute((aligned(4096)))
 #elif defined(_MSC_VER)
 __declspec(align(4096))
 #elif defined(__SUNPRO_C)
-# pragma align 4096(ecp_nistz256_precomputed)
+# pragma align 64(ecp_nistz256_precomputed)
 #endif
 static const BN_ULONG ecp_nistz256_precomputed[37][64 *
                                                    sizeof(P256_POINT_AFFINE) /


More information about the openssl-commits mailing list