pgsql: Fix a memory leak in dumping functions with TRANSFORMs - Mailing list pgsql-committers

From Daniel Gustafsson
Subject pgsql: Fix a memory leak in dumping functions with TRANSFORMs
Date
Msg-id E1tLLEZ-002BeK-PT@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix a memory leak in dumping functions with TRANSFORMs

The gneration of the dump clause for functions with TRANSFORM
calls would leak the memory for holding the result of the Oid
array parsing.  Fix by freeing.

While in there, switch to using pg_malloc instead of palloc in
order to be consistent with the rest of the file.

Author: Oleg Tselebrovskiy <o.tselebrovskiy@postgrespro.ru>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/baf1ae4511288e5b421f41e79a3df1a0@postgrespro.ru

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0e033f5b6de569e712d5f94b77878b8ffacf6397

Modified Files
--------------
src/bin/pg_dump/pg_dump.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: David Rowley
Date:
Subject: pgsql: Add missing BUFFERS OFF in regression tests, take 2
Next
From: Masahiko Sawada
Date:
Subject: pgsql: Unmark gen_random_uuid() function leakproof.