Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fe67d25

Browse files
committed
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.
1 parent 07fca60 commit fe67d25

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/regress/pg_regress.c

+2
Original file line numberDiff line numberDiff line change
@@ -1655,6 +1655,8 @@ run_schedule(const char *schedule, test_function tfunc)
16551655
}
16561656
}
16571657

1658+
free_stringlist(&ignorelist);
1659+
16581660
fclose(scf);
16591661
}
16601662

0 commit comments

Comments
 (0)