aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_x509ext.c
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-01 09:24:55 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-11-01 09:24:55 +0000
commitfc133b89979195d350d30abbc92b00eaa4f540cb (patch)
treed27bb5cdb264f9c1e72cfebb68ba8e6d6eeed273 /ext/openssl/ossl_x509ext.c
parent09125ff3d000a48509372391b19637c4c9815a62 (diff)
downloadruby-fc133b89979195d350d30abbc92b00eaa4f540cb.tar.gz
* ext/openssl/ossl_ssl.c (ossl_ssl_peer_cert_chain): add new method
SSLSocket#peer_cert_chain. * ext/openssl/ossl_x509req.c (GetX509ReqPtr): new function which returns underlying X509_REQ. * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_set_issuer_cert, ossl_x509extfactory_set_subject_cert, ossl_x509extfactory_set_crl, ossl_x509extfactory_set_subject_req, ossl_x509extfactory_set_config): use underlying C struct without duplication not to leak momory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_x509ext.c')
-rw-r--r--ext/openssl/ossl_x509ext.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/openssl/ossl_x509ext.c b/ext/openssl/ossl_x509ext.c
index 23e768a9b5..d9ec846ac1 100644
--- a/ext/openssl/ossl_x509ext.c
+++ b/ext/openssl/ossl_x509ext.c
@@ -118,7 +118,7 @@ ossl_x509extfactory_set_issuer_cert(VALUE self, VALUE cert)
GetX509ExtFactory(self, ctx);
rb_iv_set(self, "@issuer_certificate", cert);
- ctx->issuer_cert = DupX509CertPtr(cert); /* DUP NEEDED */
+ ctx->issuer_cert = GetX509CertPtr(cert); /* NO DUP NEEDED */
return cert;
}
@@ -130,7 +130,7 @@ ossl_x509extfactory_set_subject_cert(VALUE self, VALUE cert)
GetX509ExtFactory(self, ctx);
rb_iv_set(self, "@subject_certificate", cert);
- ctx->subject_cert = DupX509CertPtr(cert); /* DUP NEEDED */
+ ctx->subject_cert = GetX509CertPtr(cert); /* NO DUP NEEDED */
return cert;
}
@@ -142,7 +142,7 @@ ossl_x509extfactory_set_subject_req(VALUE self, VALUE req)
GetX509ExtFactory(self, ctx);
rb_iv_set(self, "@subject_request", req);
- ctx->subject_req = DupX509ReqPtr(req);
+ ctx->subject_req = GetX509ReqPtr(req); /* NO DUP NEEDED */
return req;
}
@@ -154,7 +154,7 @@ ossl_x509extfactory_set_crl(VALUE self, VALUE crl)
GetX509ExtFactory(self, ctx);
rb_iv_set(self, "@crl", crl);
- ctx->crl = DupX509CRLPtr(crl);
+ ctx->crl = GetX509CRLPtr(crl); /* NO DUP NEEDED */
return crl;
}
@@ -168,7 +168,7 @@ ossl_x509extfactory_set_config(VALUE self, VALUE config)
GetX509ExtFactory(self, ctx);
rb_iv_set(self, "@config", config);
- conf = GetConfigPtr(config);
+ conf = GetConfigPtr(config); /* NO DUP NEEDED */
X509V3_set_nconf(ctx, conf);
return config;