We have a significant memory leak in the current implementation as we
don't call PyObject_Del() as the last action in tp_dealloc callbacks.
From tp_dealloc's documentation:
---
The destructor function should free all references which the instance
owns, free all memory buffers owned by the instance (using the freeing
function corresponding to the allocation function used to allocate the
buffer), and finally (as its last action) call the type’s tp_free
function.
---
PyObject_Del() will internally call the tp_free callback of the type.
Add a call to it as the last action in every destructor.
Fixes: 96c524c4951c ("bindings: implement python bindings")
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
{
if (self->source)
Py_DECREF(self->source);
+
+ PyObject_Del(self);
}
PyDoc_STRVAR(gpiod_LineEvent_get_type_doc,
{
if (self->owner)
Py_DECREF(self->owner);
+
+ PyObject_Del(self);
}
PyDoc_STRVAR(gpiod_Line_owner_doc,
Py_DECREF(self->lines[i]);
PyMem_Free(self->lines);
+ PyObject_Del(self);
}
static PyObject *gpiod_LineBulk_iternext(gpiod_LineBulkObject *self)
{
if (self->chip)
gpiod_chip_close(self->chip);
+
+ PyObject_Del(self);
}
static PyObject *gpiod_Chip_repr(gpiod_ChipObject *self)
{
if (self->iter)
gpiod_chip_iter_free_noclose(self->iter);
+
+ PyObject_Del(self);
}
static gpiod_ChipObject *gpiod_ChipIter_next(gpiod_ChipIterObject *self)
{
if (self->iter)
gpiod_line_iter_free(self->iter);
+
+ PyObject_Del(self);
}
static gpiod_LineObject *gpiod_LineIter_next(gpiod_LineIterObject *self)