mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-21 11:10:32 +03:00
Dropped bogus return in void function
This commit is contained in:
parent
e14440d96d
commit
1a93279fe7
|
@ -116,7 +116,7 @@ error_dealloc(errorObject *self)
|
||||||
PyMem_Free(self->codec);
|
PyMem_Free(self->codec);
|
||||||
CLEARPGRES(self->pgres);
|
CLEARPGRES(self->pgres);
|
||||||
|
|
||||||
return Py_TYPE(self)->tp_free((PyObject *)self);
|
Py_TYPE(self)->tp_free((PyObject *)self);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user