summaryrefslogtreecommitdiff
path: root/ext/openssl/ossl_x509ext.c
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-24 00:09:47 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-08-24 00:09:47 +0000
commit4e5fbd0b8abc1d734d56863ecf95f356b4af7240 (patch)
tree4d6678955d122c015aedbfe7c3fc246b2e8162d1 /ext/openssl/ossl_x509ext.c
parentc0309bdb02e40e61a7be1cbe1b2b5ded54c917a1 (diff)
* ext/openssl/ossl_x509attr.c (ossl_x509attr_initialize): d2i
functions may replace the pointer indicated by the first argument. * ext/openssl/ossl_x509ext.c (ossl_x509ext_initialize): ditto. * ext/openssl/ossl_x509name.c (ossl_x509name_initialize): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_x509ext.c')
-rw-r--r--ext/openssl/ossl_x509ext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/openssl/ossl_x509ext.c b/ext/openssl/ossl_x509ext.c
index f0ce068d6b..57e005489a 100644
--- a/ext/openssl/ossl_x509ext.c
+++ b/ext/openssl/ossl_x509ext.c
@@ -260,13 +260,13 @@ ossl_x509ext_initialize(int argc, VALUE *argv, VALUE self)
unsigned char *p;
X509_EXTENSION *ext;
+ GetX509Ext(self, ext);
if(rb_scan_args(argc, argv, "12", &oid, &value, &critical) == 1){
- /* evaluate oid as a DER string */
oid = ossl_to_der_if_possible(oid);
StringValue(oid);
- GetX509Ext(self, ext);
p = RSTRING(oid)->ptr;
- if(!d2i_X509_EXTENSION(&ext, &p, RSTRING(oid)->len))
+ if(!d2i_X509_EXTENSION((X509_EXTENSION**)&DATA_PTR(self),
+ &p, RSTRING(oid)->len))
ossl_raise(eX509ExtError, NULL);
return self;
}