Fix missing free in replmsg_dealloc

This commit is contained in:
Oleksandr Shulgin 2015-07-03 11:40:00 +02:00
parent 9c1f2acf3e
commit 06f18237f7

View File

@ -80,7 +80,11 @@ replmsg_clear(replicationMessageObject *self)
static void
replmsg_dealloc(PyObject* obj)
{
PyObject_GC_UnTrack(obj);
replmsg_clear((replicationMessageObject*) obj);
Py_TYPE(obj)->tp_free(obj);
}
#define psyco_replmsg_send_time_doc \