The branch OpenSSL_1_1_0-stable has been updated
       via  6fa4d63dbf26c7ec57407edd7987d8036e0a5ee5 (commit)
      from  28304b1239eb67c5204a6c80cc5b50f715167140 (commit)


- Log -----------------------------------------------------------------
commit 6fa4d63dbf26c7ec57407edd7987d8036e0a5ee5
Author: FdaSilvaYY <[email protected]>
Date:   Tue Sep 27 23:36:37 2016 +0200

    Allow null in  X509_CRL_METHOD_free
    
    and fix documentation.
    
    Reviewed-by: Tim Hudson <[email protected]>
    Reviewed-by: Rich Salz <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/1634)
    (cherry picked from commit 7cb1ecec59d7c8d6628fb9bfd435306f7e06fd33)

-----------------------------------------------------------------------

Summary of changes:
 crypto/x509/x_crl.c     | 2 +-
 doc/crypto/X509_dup.pod | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/crypto/x509/x_crl.c b/crypto/x509/x_crl.c
index f94d04c..a5871ca 100644
--- a/crypto/x509/x_crl.c
+++ b/crypto/x509/x_crl.c
@@ -441,7 +441,7 @@ X509_CRL_METHOD *X509_CRL_METHOD_new(int (*crl_init) 
(X509_CRL *crl),
 
 void X509_CRL_METHOD_free(X509_CRL_METHOD *m)
 {
-    if (!(m->flags & X509_CRL_METHOD_DYNAMIC))
+    if (m == NULL || !(m->flags & X509_CRL_METHOD_DYNAMIC))
         return;
     OPENSSL_free(m);
 }
diff --git a/doc/crypto/X509_dup.pod b/doc/crypto/X509_dup.pod
index 574994d..c5d01b2 100644
--- a/doc/crypto/X509_dup.pod
+++ b/doc/crypto/X509_dup.pod
@@ -208,8 +208,6 @@ X509_CINF_free,
 X509_CINF_new,
 X509_CRL_INFO_free,
 X509_CRL_INFO_new,
-X509_CRL_METHOD_free,
-X509_CRL_METHOD_new,
 X509_CRL_dup,
 X509_CRL_free,
 X509_CRL_new,
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to