Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 732cc9b

Browse files
committed
Merged revisions 83677 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r83677 | mark.dickinson | 2010-08-03 19:31:54 +0100 (Tue, 03 Aug 2010) | 1 line Fix memory leak in ssl module. ........
1 parent a555c19 commit 732cc9b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Modules/_ssl.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,7 @@ PySSL_test_decode_certificate (PyObject *mod, PyObject *args) {
977977
}
978978

979979
retval = _decode_certificate(x, verbose);
980+
X509_free(x);
980981

981982
fail0:
982983

0 commit comments

Comments
 (0)