pgsql: Remove memory leaks in isolationtester.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Remove memory leaks in isolationtester.
Дата
Msg-id E1lxXuT-0005kl-3N@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove memory leaks in isolationtester.

specscanner.l leaked a kilobyte of memory per token of the spec file.
Apparently somebody thought that the introductory code block would be
executed once; but it's once per yylex() call.

A couple of functions in isolationtester.c leaked small amounts of
memory due to not bothering to free one-time allocations.  Might
as well improve these so that valgrind gives this program a clean
bill of health.  Also get rid of an ugly static variable.

Coverity complained about one of the one-time leaks, which led me
to try valgrind'ing isolationtester, which led to discovery of the
larger leak.

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/7676d95949b1e33c1d20325c0231fc774364136e

Modified Files
--------------
src/test/isolation/isolationtester.c | 20 +++++++++++++-------
src/test/isolation/specscanner.l     |  8 ++++++--
2 files changed, 19 insertions(+), 9 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Error message refactoring
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Make index_set_state_flags() transactional