gpio: sim: fix a memory leak
commit79eeab1d85
upstream. Fix an inverted logic bug in gpio_sim_remove_hogs() that leads to GPIO hog structures never being freed. Fixes:cb8c474e79
("gpio: sim: new testing module") Reported-by: Mirsad Goran Todorovac <mirsad.todorovac@alu.unizg.hr> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
54806cb751
commit
854e1ecff2
|
@ -732,7 +732,7 @@ static void gpio_sim_remove_hogs(struct gpio_sim_device *dev)
|
|||
|
||||
gpiod_remove_hogs(dev->hogs);
|
||||
|
||||
for (hog = dev->hogs; !hog->chip_label; hog++) {
|
||||
for (hog = dev->hogs; hog->chip_label; hog++) {
|
||||
kfree(hog->chip_label);
|
||||
kfree(hog->line_name);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue