If a bank gets released before the device is disabled, the sysfs file
descriptor of that bank is leaked. close() it when releasing the bank.
While at it: improve two other details - unlink the configfs directory
after closing the file descriptor associated with it and remove an
unnecessary check when closing the sysfs descriptor when disabling the
device.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
free(bank->chip_name);
free(bank->dev_path);
bank->chip_name = bank->dev_path = NULL;
-
- if (bank->sysfs_dir_fd < 0)
- break;
-
close(bank->sysfs_dir_fd);
bank->sysfs_dir_fd = -1;
}
}
list_del(&bank->siblings);
+ close(bank->cfs_dir_fd);
unlinkat(dev->cfs_dir_fd, bank->item_name, AT_REMOVEDIR);
gpiosim_dev_unref(dev);
- close(bank->cfs_dir_fd);
+ if (bank->sysfs_dir_fd >= 0)
+ /* If the device wasn't disabled yet, this fd is still open. */
+ close(bank->sysfs_dir_fd);
free(bank->item_name);
free(bank->chip_name);
free(bank->dev_path);