pgsql: Fix memory leak when rejecting bogus DH parameters. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix memory leak when rejecting bogus DH parameters.
Date
Msg-id E1lNeli-0004vX-V1@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix memory leak when rejecting bogus DH parameters.

While back-patching e0e569e1d, I noted that there were some other
places where we ought to be applying DH_free(); namely, where we
load some DH parameters from a file and then reject them as not
being sufficiently secure.  While it seems really unlikely that
anybody would hit these code paths in production, let alone do
so repeatedly, let's fix it for consistency.

Back-patch to v10 where this code was introduced.

Discussion: https://postgr.es/m/16160-18367e56e9a28264@postgresql.org

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/2f31414f4322876b34674eedc6e7d19c29ebe0d0

Modified Files
--------------
src/backend/libpq/be-secure-openssl.c | 3 +++
1 file changed, 3 insertions(+)


pgsql-committers by date:

Previous
From: Andrew Dunstan
Date:
Subject: Re: pgsql: Blindly try to fix test script's tar invocation for MSYS.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix memory leak when initializing DH parameters in backend