Hi, Coverity is nitpickingly pointing out the following thing: --- a/src/bin/pg_upgrade/controldata.c +++ b/src/bin/pg_upgrade/controldata.c @@ -402,8 +402,7 @@ get_control_data(ClusterInfo *cluster, bool live_check) } }
- if (output) - pclose(output); + pclose(output); The thing is that output can never be NULL, pg_upgrade leaving with pg_fatal before coming to this code path. Hence this NULL check could be simply removed. Regards, -- Michael -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers