summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/bn/bn.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/bn/bn.h')
-rw-r--r--crypto/openssl/crypto/bn/bn.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/openssl/crypto/bn/bn.h b/crypto/openssl/crypto/bn/bn.h
index 21a1a3f..c4d6185 100644
--- a/crypto/openssl/crypto/bn/bn.h
+++ b/crypto/openssl/crypto/bn/bn.h
@@ -780,7 +780,9 @@ int RAND_pseudo_bytes(unsigned char *buf,int num);
#define bn_wcheck_size(bn, words) \
do { \
const BIGNUM *_bnum2 = (bn); \
- assert(words <= (_bnum2)->dmax && words >= (_bnum2)->top); \
+ assert((words) <= (_bnum2)->dmax && (words) >= (_bnum2)->top); \
+ /* avoid unused variable warning with NDEBUG */ \
+ (void)(_bnum2); \
} while(0)
#else /* !BN_DEBUG */
OpenPOWER on IntegriCloud