]> granicus.if.org Git - postgresql/commit
Avoid minor leak in parallel pg_dump
authorStephen Frost <sfrost@snowman.net>
Fri, 24 Jan 2014 20:10:08 +0000 (15:10 -0500)
committerStephen Frost <sfrost@snowman.net>
Fri, 24 Jan 2014 20:12:54 +0000 (15:12 -0500)
commit8cb90b21af3cc52c21d8a43e2d9f125113ad9f4f
treea4c976d644119836b3d897643f957d0302d93b0c
parentbe5d4997437d185b1b7ca6e53a6e433810aee4f0
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.
src/bin/pg_dump/parallel.c