We incorrectly allocate the chip structure twice: once in
gpio_mockup_probe() and then again in make_chip() which leads to a
memory leak. Remove the first instance as it's the one that's
unnecessary.
Fixes: e43e46d4f79c ("tests: mockup: add a library for controlling the gpio-mockup module")
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
if (!ctx->chips)
goto err_remove_module;
- for (i = 0; i < num_chips; i++) {
- ctx->chips[i] = malloc(sizeof(struct gpio_mockup_chip));
- if (!ctx->chips[i])
- goto err_free_chips;
- }
-
pfd.fd = udev_monitor_get_fd(monitor);
pfd.events = POLLIN | POLLPRI;