3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

t-runner: Fix mem leak caused by python test names

This commit is contained in:
Tim Kourt 2019-10-22 16:13:13 -07:00 committed by Denis Kenzior
parent 269bf497c7
commit c0863e5bc6

View File

@ -1089,6 +1089,8 @@ static bool add_path(const char *path, int level, struct l_queue *config_queue)
l_queue_insert(config_queue, entry, insert_test_entry, NULL);
}
l_queue_destroy(py_test_queue, l_free);
closedir(dir);
return true;
}