gpiosim: fix a resource leak
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 5 Dec 2022 13:08:04 +0000 (14:08 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 09:14:48 +0000 (10:14 +0100)
commitba0fa90b8bb33c38ea026382cd01ebf7fed62931
tree96046b3897bf5b31c0b83d42377afb3338a690c2
parent2064a05984f6585674f7a380ce5bf6c60eed992b
gpiosim: fix a resource leak

If we set the number of lines to x, set line names or hogs for lines
from 0 through x, then set the number of lines to (x - y), we will not
unlink all the line directories as we only iterate up to num_lines in
bank_release().

Allocate a small structure for every line we create a lineX directory
for and iterate over it in bank_release() to know exactly which ones
need freeing.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
tests/gpiosim/gpiosim.c