Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite1c0872

Browse files
committed
Fix memory leak in libpq when using sslmode=verify-full
Checking if Subject Alternative Names (SANs) from a certificate matchwith the hostname connected to leaked memory after each lookup done.This is broken sinceacd08d7 that added support for SANs in SSLcertificates, so backpatch down to 9.5.Author: Roman PeshkurovReviewed-by: Hamid Akhtar, Michael Paquier, David SteeleDiscussion:https://postgr.es/m/CALLDf-pZ-E3mjxd5=bnHsDu9zHEOnpgPgdnO84E2RuwMCjjyPw@mail.gmail.comBackpatch-through: 9.5
1 parentcda0240 commite1c0872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/interfaces/libpq/fe-secure-openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ pgtls_verify_peer_name_matches_certificate_guts(PGconn *conn,
550550
if (rc!=0)
551551
break;
552552
}
553-
sk_GENERAL_NAME_free(peer_san);
553+
sk_GENERAL_NAME_pop_free(peer_san,GENERAL_NAME_free);
554554
}
555555

556556
/*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp