bindings: python: fix a memory corruption
authorBartosz Golaszewski <bartekgola@gmail.com>
Fri, 13 Jul 2018 09:21:31 +0000 (11:21 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Fri, 13 Jul 2018 09:25:25 +0000 (11:25 +0200)
commitdf5d7b4f4276f24174c955e9edaa047a09c6e7c4
tree4e9454d9e145973da6e33c98a21a7ab81d14ec18
parentead4d6b46ac84d4c24dae8a92418ecac9766be6c
bindings: python: fix a memory corruption

PyList_GetItem() returns a borrowed reference so we need to increase
the reference count on the returned object before DECREF'ing the list
object itself

This fixes random 'free(): invalid pointer' errors.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c