From: Heikki Linnakangas Date: Wed, 20 Feb 2013 14:22:47 +0000 (+0200) Subject: Don't pass NULL to fprintf, if a bogus connection string is given to pg_dump. X-Git-Tag: REL9_1_9~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23ef96327f9ea2a0213d05831175a3ac1b472f29;p=postgresql Don't pass NULL to fprintf, if a bogus connection string is given to pg_dump. Back-patch to all supported branches. --- diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index 2d2ddf61f7..3851398b1d 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -305,7 +305,8 @@ ConnectDatabase(Archive *AHX, /* check to see that the backend connection was successfully made */ if (PQstatus(AH->connection) == CONNECTION_BAD) die_horribly(AH, modulename, "connection to database \"%s\" failed: %s", - PQdb(AH->connection), PQerrorMessage(AH->connection)); + PQdb(AH->connection) ? PQdb(AH->connection) : "", + PQerrorMessage(AH->connection)); /* check for version mismatch */ _check_database_version(AH);