]> granicus.if.org Git - postgresql/commit
Clean up memory leakage in find_inheritors() by using pg_list lists
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Dec 1999 04:09:39 +0000 (04:09 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 7 Dec 1999 04:09:39 +0000 (04:09 +0000)
commit04fa5ca5449c1efcd484b3a6ec891b299513cdfd
tree5e099b0495c0cd38143f75f6b6a4e114e49cf514
parent5ad4034a4c12fc0d55f7b14a73e597943b97f717
Clean up memory leakage in find_inheritors() by using pg_list lists
(which are palloc'd) instead of DLLists (which are malloc'd).  Not very
significant, since this routine seldom has anything useful to do, but
a leak is a leak...
src/backend/parser/parse_func.c