mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-16 19:39:40 +00:00
Apparently '__top' is also risky, obfuscate further. (All this to
avoid inlines...)
This commit is contained in:
parent
020d67fb89
commit
ae7ec4c71d
@ -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); \
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user