aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_asn1.c
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2017-01-17 13:34:34 +0900
committerKazuki Yamaguchi <k@rhe.jp>2017-01-17 13:34:34 +0900
commita1b4a89b381fd5dd773656e9edbfc2eb761886e6 (patch)
tree6e93b1ca46319a4fd442def897adb90e9c109930 /ext/openssl/ossl_asn1.c
parentf297f18deb5bc9669e9defc88aa0af454856fe08 (diff)
parentbe817ba62b71cb3635aa805338a6d536db4af8f8 (diff)
downloadruby-openssl-a1b4a89b381fd5dd773656e9edbfc2eb761886e6.tar.gz
Merge branch 'maint'
* maint: appveyor.yml: update OpenSSL version to 1.0.2j Fix build with static OpenSSL libraries on Windows Fix for ASN1::Constructive 'each' implementation
Diffstat (limited to 'ext/openssl/ossl_asn1.c')
-rw-r--r--ext/openssl/ossl_asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c
index 1977fdd2..9b554820 100644
--- a/ext/openssl/ossl_asn1.c
+++ b/ext/openssl/ossl_asn1.c
@@ -1273,7 +1273,7 @@ ossl_asn1cons_to_der(VALUE self)
static VALUE
ossl_asn1cons_each(VALUE self)
{
- rb_funcall(ossl_asn1_get_value(self), id_each, 0);
+ rb_block_call(ossl_asn1_get_value(self), id_each, 0, 0, 0, 0);
return self;
}