pgsql: pg_dump: Fix some minor memory leaks

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: pg_dump: Fix some minor memory leaks
Date: 2012-03-14 20:51:40
Message-ID: E1S7vAa-0007to-7t@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_dump: Fix some minor memory leaks

Although we often don't care about freeing all memory in pg_dump,
these functions already freed the same memory in other code paths, so
we might as well do it consistently.

found by Coverity

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/acfaa596ccd90e161bcc09bb00e755e65d9c068c

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 30 +++++++++++++++++++++---------
src/bin/pg_dump/pg_dumpall.c | 7 ++++++-
2 files changed, 27 insertions(+), 10 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2012-03-14 21:05:28 pgsql: Improve EncodeDateTime and EncodeTimeOnly APIs
Previous Message Tom Lane 2012-03-13 19:26:56 pgsql: Patch some corner-case bugs in pl/python.