summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2008-10-22 12:00:15 +0000
committerGeoff Thorpe <geoff@openssl.org>2008-10-22 12:00:15 +0000
commitae7ec4c71de74fa52c5d89e32e28445c6602990d (patch)
tree6ea86a6e61cf26b378f5800a5549c1784faf72b9 /crypto/bn/bn.h
parent020d67fb89fcd8799350a46b36982a104e0b2d4c (diff)
Apparently '__top' is also risky, obfuscate further. (All this to
avoid inlines...)
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index eedde6a016..2333682a17 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -752,12 +752,12 @@ int RAND_pseudo_bytes(unsigned char *buf,int num);
#define bn_correct_top(a) \
{ \
BN_ULONG *ftl; \
- int __top = (a)->top; \
- if (__top > 0) \
+ int _t371q = (a)->top; \
+ if (_t371q > 0) \
{ \
- for (ftl= &((a)->d[__top-1]); __top > 0; __top--) \
+ for (ftl= &((a)->d[_t371q-1]); _t371q > 0; _t371q--) \
if (*(ftl--)) break; \
- (a)->top = __top; \
+ (a)->top = _t371q; \
} \
bn_pollute(a); \
}