[openssl] OpenSSL_1_1_1-stable update

Matt Caswell matt at openssl.org
Wed Jul 31 16:35:04 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  ca33a43fe21ace99a7e689f40a90e3ad42e794a0 (commit)
      from  ffc2b6373aabcdcfbb0ac725a00a907834202c4f (commit)


- Log -----------------------------------------------------------------
commit ca33a43fe21ace99a7e689f40a90e3ad42e794a0
Author: joe2018Outlookcom <joe_2018 at Outlook.com>
Date:   Wed Jul 31 13:46:02 2019 +0800

    Fix warning C4164 in MSVC.
    
    Fix: crypto\whrlpool\wp_block.c(90) : warning C4164: '_rotl64' : intrinsic function not declared.
    Fixes #9487
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/9488)
    
    (cherry picked from commit 0c789f59f117ccbb30ffc621216ba776117c7c61)

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

Summary of changes:
 crypto/whrlpool/wp_block.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/whrlpool/wp_block.c b/crypto/whrlpool/wp_block.c
index 0cc92a3b01..f4f994bc47 100644
--- a/crypto/whrlpool/wp_block.c
+++ b/crypto/whrlpool/wp_block.c
@@ -87,6 +87,7 @@ typedef unsigned long long u64;
 #ifndef PEDANTIC
 # if defined(_MSC_VER)
 #  if defined(_WIN64)            /* applies to both IA-64 and AMD64 */
+#   include <stdlib.h>
 #   pragma intrinsic(_rotl64)
 #   define ROTATE(a,n) _rotl64((a),n)
 #  endif


More information about the openssl-commits mailing list