mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
Untrack the connection before closing to avoid possible double-free
From Gangadharan S.A. Fixes issue #166.
This commit is contained in:
parent
83c5d12cf1
commit
921b676471
2
NEWS
2
NEWS
|
@ -5,6 +5,8 @@ What's new in psycopg 2.5.1
|
|||
declared (:ticket:`#146`).
|
||||
- Fixed comparison of `Range` with non-range objects (:ticket:`#164`).
|
||||
Thanks to Chris Withers for the patch.
|
||||
- Fixed double-free on connection dealloc (:ticket:`#166`). Thanks to
|
||||
Gangadharan S.A. for the report and fix suggestion.
|
||||
|
||||
|
||||
What's new in psycopg 2.5
|
||||
|
|
|
@ -1128,10 +1128,13 @@ connection_dealloc(PyObject* obj)
|
|||
{
|
||||
connectionObject *self = (connectionObject *)obj;
|
||||
|
||||
conn_close(self);
|
||||
|
||||
/* Make sure to untrack the connection before calling conn_close, which may
|
||||
* allow a different thread to try and dealloc the connection again,
|
||||
* resulting in a double-free segfault (ticket #166). */
|
||||
PyObject_GC_UnTrack(self);
|
||||
|
||||
conn_close(self);
|
||||
|
||||
if (self->weakreflist) {
|
||||
PyObject_ClearWeakRefs(obj);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user