summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2023-11-06 10:44:27 +0100
committerBernd Edlinger <bernd.edlinger@hotmail.de>2023-11-09 17:35:54 +0100
commit0fdf6e0a1b16c9f359c63fd94aaa7648dc8ef24c (patch)
treed33de553da06925c2d9e9159f812b2c6e29b0d73
parentfc0dce399aed2c8d2aea8ea675aa3d50f51b6ef4 (diff)
Fix a possible memory leak of ssl->s3.tmp.psk
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22637) (cherry picked from commit a2b1ab6100d5f0fb50b61d241471eea087415632)
-rw-r--r--ssl/s3_lib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 1f778c3423..e8ec98c221 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -3371,6 +3371,10 @@ void ssl3_free(SSL *s)
OPENSSL_free(sc->s3.alpn_selected);
OPENSSL_free(sc->s3.alpn_proposed);
+#ifndef OPENSSL_NO_PSK
+ OPENSSL_free(sc->s3.tmp.psk);
+#endif
+
#ifndef OPENSSL_NO_SRP
ssl_srp_ctx_free_intern(sc);
#endif