Release temporary array in check_for_data_types_usage().
commit225e1dde463ae312714d71a929f45cfd153df2be
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Mar 2024 16:13:35 +0000 (24 12:13 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Mar 2024 16:13:35 +0000 (24 12:13 -0400)
tree2fc0f58ca98d4de36cce407e05874e9e516c7bf1
parentfc2d260c7e6236fe2447dad0f8415e72f4be66a2
Release temporary array in check_for_data_types_usage().

Coverity identified this as a resource leak.  It's surely of no
consequence given that the function is called only once per run, but
freeing the storage is no more work than dismissing the complaint.
Minor oversight in commit 347758b12.
src/bin/pg_upgrade/check.c