projects
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
3dda0dd
)
Workaround for GCC-ia64 compiler bug.
author
Andy Polyakov
<appro@openssl.org>
Fri, 6 Dec 2002 17:18:10 +0000
(17:18 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Fri, 6 Dec 2002 17:18:10 +0000
(17:18 +0000)
Submitted by: <appro>
Reviewed by:
PR:
crypto/asn1/a_d2i_fp.c
patch
|
blob
|
history
diff --git
a/crypto/asn1/a_d2i_fp.c
b/crypto/asn1/a_d2i_fp.c
index
cfb56ae
..
b67b75e
100644
(file)
--- a/
crypto/asn1/a_d2i_fp.c
+++ b/
crypto/asn1/a_d2i_fp.c
@@
-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;
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;
int off=0;
+#endif
int len=0;
b=BUF_MEM_new();
int len=0;
b=BUF_MEM_new();