Workaround for GCC-ia64 compiler bug.
Submitted by: <appro> Reviewed by: PR:
This commit is contained in:
parent
b1d4b48d39
commit
1c799131ae
@ -149,7 +149,12 @@ static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb)
|
|||||||
ASN1_CTX c;
|
ASN1_CTX c;
|
||||||
int want=HEADER_SIZE;
|
int want=HEADER_SIZE;
|
||||||
int eos=0;
|
int eos=0;
|
||||||
|
#if defined(__GNUC__) && defined(__ia64)
|
||||||
|
/* pathetic compiler bug in all known versions as of Nov. 2002 */
|
||||||
|
long off=0;
|
||||||
|
#else
|
||||||
int off=0;
|
int off=0;
|
||||||
|
#endif
|
||||||
int len=0;
|
int len=0;
|
||||||
|
|
||||||
b=BUF_MEM_new();
|
b=BUF_MEM_new();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user