From e6e9170d6e28038768895e1af18e3aad8093bf4b Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 27 Mar 2018 16:25:08 -0400 Subject: Allow NULL for some _free routines. Based on the description in https://github.com/openssl/openssl/pull/5757, this re-implements the "allow NULL to be passed" behavior of a number of xxx_free routines. I also fixed up some egregious formatting errors that were nearby. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/5761) --- crypto/comp/comp_lib.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto/comp/comp_lib.c') diff --git a/crypto/comp/comp_lib.c b/crypto/comp/comp_lib.c index 5bed1876a8..c199bb352f 100644 --- a/crypto/comp/comp_lib.c +++ b/crypto/comp/comp_lib.c @@ -45,6 +45,8 @@ const char *COMP_get_name(const COMP_METHOD *meth) void COMP_CTX_free(COMP_CTX *ctx) { + if (ctx == NULL) + return; if (ctx->meth->finish != NULL) ctx->meth->finish(ctx); -- cgit v1.2.3