Avoid minor leak in parallel pg_dump During parallel pg_dump, a worker process closing the connection caused a minor memory leak (particularly minor as we are likely about to exit anyway). Instead, free the memory in this case prior to returning NULL to indicate connection closed.
Spotting by the Coverity scanner. Back patch to 9.3 where this was introduced. Branch ------ master Details ------- http://git.postgresql.org/pg/commitdiff/6794a9f9a194e24862e60a918eac031b7641686c Modified Files -------------- src/bin/pg_dump/parallel.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
