diff options
Diffstat (limited to 'openssl/crypto/bn/bn.h')
-rw-r--r-- | openssl/crypto/bn/bn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl/crypto/bn/bn.h b/openssl/crypto/bn/bn.h index 21a1a3fe3..c4d618522 100644 --- a/openssl/crypto/bn/bn.h +++ b/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 */ |