diff --git a/ChangeLog b/ChangeLog index c89c926e98..4052e53d85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 14 10:25:57 2010 NAKAMURA Usaku + + * ext/openssl/ossl_asn1.c (ossl_asn1_decode0): how many gcc-c99isms + must a man mend; before he can build with VC? r30178 + Mon Dec 13 21:26:33 2010 NARUSE, Yui * io.c (simple_sendfile): disable the use of sendfile(2) on diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c index 7fb9121558..b67decc5f3 100644 --- a/ext/openssl/ossl_asn1.c +++ b/ext/openssl/ossl_asn1.c @@ -764,8 +764,8 @@ ossl_asn1_decode0(unsigned char **pp, long length, long *offset, long depth, tag_class = sUNIVERSAL; if(j & V_ASN1_CONSTRUCTED){ if((j == 0x21) && (len == 0)){ - infinite = 1; long lastoff = off; + infinite = 1; value = ossl_asn1_decode0(&p, length, &off, depth+1, 0, yield); len = off - lastoff; }