[openssl] OpenSSL_1_1_1-stable update
beldmit at gmail.com
beldmit at gmail.com
Sat Oct 9 08:34:48 UTC 2021
The branch OpenSSL_1_1_1-stable has been updated
via a653e037ef0236ea9cd84ec4c94f0bb94aca56ab (commit)
from 14357a51130510d87fe5f31e45baaf70bd5c9027 (commit)
- Log -----------------------------------------------------------------
commit a653e037ef0236ea9cd84ec4c94f0bb94aca56ab
Author: Dmitry Belyavskiy <beldmit at gmail.com>
Date: Thu Oct 7 19:14:50 2021 +0200
Bindhost/bindport should be freed
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16775)
(cherry picked from commit 0ce0c455862ed29bd7f2acdbddbe8d0b1783c1c9)
-----------------------------------------------------------------------
Summary of changes:
apps/s_client.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/apps/s_client.c b/apps/s_client.c
index 83b3fc9c7f..fe34487787 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -3151,6 +3151,8 @@ int s_client_main(int argc, char **argv)
#endif
OPENSSL_free(connectstr);
OPENSSL_free(bindstr);
+ OPENSSL_free(bindhost);
+ OPENSSL_free(bindport);
OPENSSL_free(host);
OPENSSL_free(port);
X509_VERIFY_PARAM_free(vpm);
More information about the openssl-commits
mailing list