Workaround for GCC-ia64 compiler bug.

Submitted by: <appro>
Reviewed by:
PR:
This commit is contained in:
Andy Polyakov 2002-12-06 17:16:25 +00:00
parent b1d4b48d39
commit 1c799131ae

View File

@ -149,7 +149,12 @@ static int asn1_d2i_read_bio(BIO *in, BUF_MEM **pb)
ASN1_CTX c;
int want=HEADER_SIZE;
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;
#endif
int len=0;
b=BUF_MEM_new();