[openssl] master update

Dr. Paul Dale pauli at openssl.org
Sun Feb 14 06:50:30 UTC 2021


The branch master has been updated
       via  09c77b87ae5a7c2b7b6046aa1caa50080cdaa3a3 (commit)
      from  8a43091bc7c021ae90101473ade8ee4f52976482 (commit)


- Log -----------------------------------------------------------------
commit 09c77b87ae5a7c2b7b6046aa1caa50080cdaa3a3
Author: Pauli <ppzgs1 at gmail.com>
Date:   Fri Feb 12 20:06:10 2021 +1000

    Remove an unnecessary free call.
    
    https://github.com/openssl/openssl/commit/64954e2f34b8839ca7ad1e9576a6efaf3e49e17c#r47045920
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/14165)

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

Summary of changes:
 crypto/evp/p_lib.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c
index fe53b62cdd..8cf65d6a34 100644
--- a/crypto/evp/p_lib.c
+++ b/crypto/evp/p_lib.c
@@ -1627,9 +1627,7 @@ void evp_pkey_free_legacy(EVP_PKEY *x)
 static void evp_pkey_free_it(EVP_PKEY *x)
 {
     /* internal function; x is never NULL */
-
     evp_keymgmt_util_clear_operation_cache(x, 1);
-    sk_OP_CACHE_ELEM_free(x->operation_cache);
 #ifndef FIPS_MODULE
     evp_pkey_free_legacy(x);
 #endif


More information about the openssl-commits mailing list