Loading crypto/bn/bn_lcl.h +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ extern "C" { /* This is used for internal error checking and is not normally used */ #ifdef BN_DEBUG # include <assert.h> # define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->max); # define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->dmax); #else # define bn_check_top(a) #endif Loading Loading
crypto/bn/bn_lcl.h +1 −1 Original line number Diff line number Diff line Loading @@ -228,7 +228,7 @@ extern "C" { /* This is used for internal error checking and is not normally used */ #ifdef BN_DEBUG # include <assert.h> # define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->max); # define bn_check_top(a) assert ((a)->top >= 0 && (a)->top <= (a)->dmax); #else # define bn_check_top(a) #endif Loading