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.
This commit is contained in:
Kevin Grittner 2013-11-13 09:01:06 -06:00
parent 07fca603b5
commit fe67d25233
1 changed files with 2 additions and 0 deletions

View File

@ -1655,6 +1655,8 @@ run_schedule(const char *schedule, test_function tfunc)
}
}
free_stringlist(&ignorelist);
fclose(scf);
}