Commit fe67d252 authored by Kevin Grittner's avatar Kevin Grittner

Free ignorelist after each regression test schedule.

It's a trivial amount of RAM held until the end of the regression
test run; but it's probably worth fixing to silence future warnings
from code analyzers.

This was the only memory leak pointed out by clang's static code
analysis tool.
parent 07fca603
......@@ -1655,6 +1655,8 @@ run_schedule(const char *schedule, test_function tfunc)
}
}
free_stringlist(&ignorelist);
fclose(scf);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment