bindings: python: fix tp_dealloc callbacks in all objects
authorBartosz Golaszewski <bartekgola@gmail.com>
Tue, 24 Jul 2018 12:12:18 +0000 (14:12 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Tue, 24 Jul 2018 12:12:18 +0000 (14:12 +0200)
commit29adcc24da769d31a657fac747faebdca4f16a05
treea973b4588883fd88a6ca9e500229ba86087a8fe3
parent9d97f989efd8c79e96d5199ff4b94ab3f7a05cd1
bindings: python: fix tp_dealloc callbacks in all objects

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>
bindings/python/gpiodmodule.c