Fix memory leak in test args
This commit is contained in:
parent
29df1919e1
commit
db1259ac70
1 changed files with 3 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue