From: Jiaxin Wu Date: Mon, 31 Jul 2017 05:29:40 +0000 (+0800) Subject: CryptoPkg/TlsLib: Remove the redundant free of BIO objects X-Git-Tag: edk2-stable201903~3734 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=6aac2db4a11432b11ba92a0d1652d6ec3d81f353;p=mirror_edk2.git CryptoPkg/TlsLib: Remove the redundant free of BIO objects TLS BIO objects (InBio/OutBio) will be freed by SSL_free() function. So, the following free operation (BIO_free) in TlsFree is redundant. It can be removed directly. Cc: Ye Ting Cc: Long Qin Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin Reviewed-by: Long Qin Reviewed-by: Fu Siyuan --- diff --git a/CryptoPkg/Library/TlsLib/TlsInit.c b/CryptoPkg/Library/TlsLib/TlsInit.c index e2c9744a44..e524647103 100644 --- a/CryptoPkg/Library/TlsLib/TlsInit.c +++ b/CryptoPkg/Library/TlsLib/TlsInit.c @@ -130,20 +130,12 @@ TlsFree ( } // - // Free the internal TLS and BIO objects. + // Free the internal TLS and related BIO objects. // if (TlsConn->Ssl != NULL) { SSL_free (TlsConn->Ssl); } - if (TlsConn->InBio != NULL) { - BIO_free (TlsConn->InBio); - } - - if (TlsConn->OutBio != NULL) { - BIO_free (TlsConn->OutBio); - } - OPENSSL_free (Tls); }