Merge pull request #40930 from Xrayez/fix-leak-test-args

Fix memory leak in test args
This commit is contained in:
Rémi Verschelde 2020-07-31 23:23:03 +02:00 committed by GitHub
commit bc813fd061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -84,6 +84,9 @@ int test_main(int argc, char *argv[]) {
test_context.setOption("abort-after", 5);
test_context.setOption("no-breaks", true);
for (int x = 0; x < valid_arguments.size(); x++) {
delete[] args[x];
}
delete[] args;
return test_context.run();