Browse Source

Fix memory leak in test args

Andrii Doroshenko (Xrayez) 5 years ago
parent
commit
db1259ac70
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/test_main.cpp

+ 3 - 0
tests/test_main.cpp

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