aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-secure-openssl.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-04-22 07:27:03 +0900
committerMichael Paquier <michael@paquier.xyz>2020-04-22 07:27:03 +0900
commit27dbe1a18423f2f80c10d191844a0ba4dea650ff (patch)
tree13013e217b552ae34cbbb555df72960083f75e41 /src/interfaces/libpq/fe-secure-openssl.c
parent8803506c411e457adc2531c6ecb69e002e8a83c6 (diff)
downloadpostgresql-27dbe1a18423f2f80c10d191844a0ba4dea650ff.tar.gz
postgresql-27dbe1a18423f2f80c10d191844a0ba4dea650ff.zip
Fix memory leak in libpq when using sslmode=verify-full
Checking if Subject Alternative Names (SANs) from a certificate match with the hostname connected to leaked memory after each lookup done. This is broken since acd08d7 that added support for SANs in SSL certificates, so backpatch down to 9.5. Author: Roman Peshkurov Reviewed-by: Hamid Akhtar, Michael Paquier, David Steele Discussion: https://postgr.es/m/CALLDf-pZ-E3mjxd5=bnHsDu9zHEOnpgPgdnO84E2RuwMCjjyPw@mail.gmail.com Backpatch-through: 9.5
Diffstat (limited to 'src/interfaces/libpq/fe-secure-openssl.c')
-rw-r--r--src/interfaces/libpq/fe-secure-openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-secure-openssl.c b/src/interfaces/libpq/fe-secure-openssl.c
index d3a37e1d273..731aa23c553 100644
--- a/src/interfaces/libpq/fe-secure-openssl.c
+++ b/src/interfaces/libpq/fe-secure-openssl.c
@@ -552,7 +552,7 @@ pgtls_verify_peer_name_matches_certificate_guts(PGconn *conn,
if (rc != 0)
break;
}
- sk_GENERAL_NAME_free(peer_san);
+ sk_GENERAL_NAME_pop_free(peer_san, GENERAL_NAME_free);
}
/*