symbol deobnoxification

This commit is contained in:
Bodo Möller 2008-11-11 07:08:59 +00:00
parent 7b808412c9
commit 0a8c9f7de1

View File

@ -754,12 +754,12 @@ int RAND_pseudo_bytes(unsigned char *buf,int num);
#define bn_correct_top(a) \ #define bn_correct_top(a) \
{ \ { \
BN_ULONG *ftl; \ BN_ULONG *ftl; \
int _t371q = (a)->top; \ int tmp_top = (a)->top; \
if (_t371q > 0) \ if (tmp_top > 0) \
{ \ { \
for (ftl= &((a)->d[_t371q-1]); _t371q > 0; _t371q--) \ for (ftl= &((a)->d[tmp_top-1]); tmp_top > 0; tmp_top--) \
if (*(ftl--)) break; \ if (*(ftl--)) break; \
(a)->top = _t371q; \ (a)->top = tmp_top; \
} \ } \
bn_pollute(a); \ bn_pollute(a); \
} }