aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-05-10 00:16:07 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-05-10 00:16:49 +0000
commit9a7a453f258425e4958de45c1db35a9094ec9c35 (patch)
treef1f9f3ef9723d81038dab27cc6ecb001044f986d /contrib
parentMerge pull request #5509 (diff)
downloadmonero-9a7a453f258425e4958de45c1db35a9094ec9c35.tar.xz
net_ssl: free certs after setting them up
Diffstat (limited to 'contrib')
-rw-r--r--contrib/epee/src/net_ssl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/src/net_ssl.cpp b/contrib/epee/src/net_ssl.cpp
index ba0bef0c7..7d48d2a64 100644
--- a/contrib/epee/src/net_ssl.cpp
+++ b/contrib/epee/src/net_ssl.cpp
@@ -352,7 +352,7 @@ boost::asio::ssl::context ssl_options_t::create_context() const
MERROR("Failed to use generated EC private key for " << NID_secp256k1);
else
ok = true;
- // don't free the cert, the CTX owns it now
+ X509_free(cert);
EVP_PKEY_free(pkey);
#endif
@@ -362,7 +362,7 @@ boost::asio::ssl::context ssl_options_t::create_context() const
MERROR("Failed to use generated RSA private key for RSA");
else
ok = true;
- // don't free the cert, the CTX owns it now
+ X509_free(cert);
EVP_PKEY_free(pkey);
CHECK_AND_ASSERT_THROW_MES(ok, "Failed to use any generated certificate");