From: Bernd Edlinger Date: Mon, 6 Nov 2023 09:44:27 +0000 (+0100) Subject: Fix a possible memory leak of ssl->s3.tmp.psk X-Git-Tag: openssl-3.3.0-alpha1~643 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2b1ab6100d5f0fb50b61d241471eea087415632;p=thirdparty%2Fopenssl.git Fix a possible memory leak of ssl->s3.tmp.psk Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/22637) --- diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 1f778c34234..e8ec98c2215 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