mirror of https://github.com/python/cpython
Merged revisions 83680,83685 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint ................ r83680 | mark.dickinson | 2010-08-03 19:34:53 +0100 (Tue, 03 Aug 2010) | 9 lines Merged revisions 83677 via svnmerge from svn+ssh://pythondev@svn.python.org/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. ........ ................ r83685 | mark.dickinson | 2010-08-03 19:46:28 +0100 (Tue, 03 Aug 2010) | 9 lines Merged revisions 83683 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83683 | mark.dickinson | 2010-08-03 19:44:16 +0100 (Tue, 03 Aug 2010) | 1 line Misc/NEWS entry for r83677. ........ ................
This commit is contained in:
parent
213bcb8de1
commit
c1ef2fa45f
|
@ -379,6 +379,8 @@ Library
|
||||||
Extension Modules
|
Extension Modules
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Fix memory leak in ssl._ssl._test_decode_cert.
|
||||||
|
|
||||||
- Issue #9422: Fix memory leak when re-initializing a struct.Struct object.
|
- Issue #9422: Fix memory leak when re-initializing a struct.Struct object.
|
||||||
|
|
||||||
- Issue #7900: The getgroups(2) system call on MacOSX behaves rather oddly
|
- Issue #7900: The getgroups(2) system call on MacOSX behaves rather oddly
|
||||||
|
|
|
@ -964,6 +964,7 @@ PySSL_test_decode_certificate (PyObject *mod, PyObject *args) {
|
||||||
}
|
}
|
||||||
|
|
||||||
retval = _decode_certificate(x, verbose);
|
retval = _decode_certificate(x, verbose);
|
||||||
|
X509_free(x);
|
||||||
|
|
||||||
fail0:
|
fail0:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue