projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7bd9e62
)
gpiosim: fix a memory leak
author
Bartosz Golaszewski
<brgl@bgdev.pl>
Wed, 23 Feb 2022 10:03:30 +0000
(11:03 +0100)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/tests/gpiosim/gpiosim.c
b/tests/gpiosim/gpiosim.c
index 1429b7ea225acef7015644af9e3100d22666df66..338fbc17148e56d6a89d1a9f359cb67d0d2febb5 100644
(file)
--- a/
tests/gpiosim/gpiosim.c
+++ b/
tests/gpiosim/gpiosim.c
@@
-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);
}