From 36ac656a1ba06e29598dae7a2918bb0cc5160f70 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 13 Dec 2000 13:55:03 +0000 Subject: Stop extension creation code core dumping. This was caused by no initialising the buffer to NULL when using the auto allocating version if i2d. --- crypto/x509v3/v3_conf.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto/x509v3/v3_conf.c') diff --git a/crypto/x509v3/v3_conf.c b/crypto/x509v3/v3_conf.c index 909bc0a10a..0890f898be 100644 --- a/crypto/x509v3/v3_conf.c +++ b/crypto/x509v3/v3_conf.c @@ -168,6 +168,7 @@ static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, X509_EXTENSION *ext; /* Convert internal representation to DER */ if(method->it) { + ext_der = NULL; ext_len = ASN1_item_i2d(ext_struc, &ext_der, method->it); if(ext_len < 0) goto merr; } else { -- cgit v1.2.3