Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Contribution description
This pull request fixes multiple memory leaks in the test cases and the RTRlib itself. All fixed memory leaks have been found by running
valgrind --leak-check=full <path-to-test-case>
.Note: One memory leak still exists in
test_dynamic_groups.c
. To me it looks like it's caused by the test code and not the RTRlib and thus it can be fixed later.Note: Valgrind shows memory leaks (still reachable) for the tests that start new threads. These are, however, not caused by any code in the tests or RTRlib but by the C runtime and thus can be ignored or rather ignores should be created for those leaks in the future.
Testing procedure
Run
valgrind --leak-check=full <path-to-test-case>
for each test with and without the changes of this pull request.Issues/PRs references
n/a