[openssl] OpenSSL_1_1_1-stable update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Wed Jul 17 12:19:21 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  8d64f00fd91f83e36017d7517c9e6d9fd98f6237 (commit)
      from  beeaa8d06e68b22733f0df0c8cc7dcd42adad360 (commit)


- Log -----------------------------------------------------------------
commit 8d64f00fd91f83e36017d7517c9e6d9fd98f6237
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Mon Jul 15 21:10:59 2019 +0200

    Fix a C++ comment in the refcount.h
    
    Although in a false-conditional code section gcc-4.8.4 flagged this with
    a C90 warning :-(
    
    include/internal/refcount.h:108:7: error: C++ style comments are not allowed in ISO C90 [-Werror]
           // under Windows CE we still have old-style Interlocked* functions
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/9388)

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

Summary of changes:
 include/internal/refcount.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/internal/refcount.h b/include/internal/refcount.h
index d2364c6..6e1a840 100644
--- a/include/internal/refcount.h
+++ b/include/internal/refcount.h
@@ -105,7 +105,7 @@ static __inline int CRYPTO_DOWN_REF(volatile int *val, int *ret, void *lock)
 #    if _WIN32_WCE >= 0x600
       extern long __cdecl _InterlockedExchangeAdd(long volatile*, long);
 #    else
-      // under Windows CE we still have old-style Interlocked* functions
+      /* under Windows CE we still have old-style Interlocked* functions */
       extern long __cdecl InterlockedExchangeAdd(long volatile*, long);
 #     define _InterlockedExchangeAdd InterlockedExchangeAdd
 #    endif


More information about the openssl-commits mailing list