gpiosim: fix a memory leak
authorBartosz Golaszewski <brgl@bgdev.pl>
Wed, 23 Feb 2022 10:03:30 +0000 (11:03 +0100)
committerBartosz Golaszewski <brgl@bgdev.pl>
Wed, 23 Feb 2022 21:14:17 +0000 (22:14 +0100)
If a bank gets dropped when the device is still enabled and before the
parent device, we leak the device path and chip name strings. This makes
sure we always free them.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
tests/gpiosim/gpiosim.c

index 1429b7ea225acef7015644af9e3100d22666df66..338fbc17148e56d6a89d1a9f359cb67d0d2febb5 100644 (file)
@@ -748,6 +748,8 @@ static void bank_release(struct refcount *ref)
        gpiosim_dev_unref(dev);
        close(bank->cfs_dir_fd);
        free(bank->item_name);
+       free(bank->chip_name);
+       free(bank->dev_path);
        free(bank);
 }