From 690d040b2e9df9c6ac19e1aab8f0cd79a84a2ee4 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 12 May 2015 11:49:32 -0400 Subject: [PATCH] Add NULL checks from master The big "don't check for NULL" cleanup requires backporting some of the lowest-level functions to actually do nothing if NULL is given. This will make it easier to backport fixes to release branches, where master assumes those lower-level functions are "safe" This commit addresses those tickets: 3798 3799 3801. Reviewed-by: Matt Caswell (cherry picked from commit f34b095fab1569d093b639bfcc9a77d6020148ff) --- crypto/x509/x509_lu.c | 2 ++ crypto/x509/x509_vfy.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/crypto/x509/x509_lu.c b/crypto/x509/x509_lu.c index a910636f82..8415d1d8b3 100644 --- a/crypto/x509/x509_lu.c +++ b/crypto/x509/x509_lu.c @@ -216,6 +216,8 @@ X509_STORE *X509_STORE_new(void) static void cleanup(X509_OBJECT *a) { + if (!a) + return; if (a->type == X509_LU_X509) { X509_free(a->data.x509); } else if (a->type == X509_LU_CRL) { diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index 136bfbda61..559b5cdeb5 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -1921,6 +1921,8 @@ X509_STORE_CTX *X509_STORE_CTX_new(void) void X509_STORE_CTX_free(X509_STORE_CTX *ctx) { + if (!ctx) + return; X509_STORE_CTX_cleanup(ctx); OPENSSL_free(ctx); } -- 2.39.2