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
1 changed files with 2 additions and 0 deletions

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;
}