[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Rich Salz
rsalz at openssl.org
Tue Jun 20 17:50:33 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via fd91e61f522b236d80347f0910f778314fb6ae18 (commit)
from 6fd603ab2f736dbca0dd53611335ae6d2b7012ca (commit)
- Log -----------------------------------------------------------------
commit fd91e61f522b236d80347f0910f778314fb6ae18
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Sun Mar 26 23:29:41 2017 +0200
Add parentheses around macro argument of OSSL_NELEM.
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3039)
(cherry picked from commit 26dc47f3c44c7fb4488d1becaf997737486f4922)
-----------------------------------------------------------------------
Summary of changes:
e_os.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e_os.h b/e_os.h
index 559bf90..8f52dd4 100644
--- a/e_os.h
+++ b/e_os.h
@@ -521,7 +521,7 @@ struct servent *getservbyname(const char *name, const char *proto);
# endif
/* end vxworks */
-#define OSSL_NELEM(x) (sizeof(x)/sizeof(x[0]))
+#define OSSL_NELEM(x) (sizeof(x)/sizeof((x)[0]))
#ifdef __cplusplus
}
More information about the openssl-commits
mailing list