]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Avoid null pointer dereference if error result lacks SQLSTATE.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Nov 2020 16:26:16 +0000 (11:26 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 1 Nov 2020 16:26:25 +0000 (11:26 -0500)
commit0041941f5bbe48ff3a05942efc6aa65f4f389efc
tree10987a75f174314bc48f0eb8a1fd9bf006285298
parentbb62df46bcaa109d5eb1907392034024dde0886e
Avoid null pointer dereference if error result lacks SQLSTATE.

Although error results received from the backend should always have
a SQLSTATE field, ones generated by libpq won't, making this code
vulnerable to a crash after, say, untimely loss of connection.
Noted by Coverity.

Oversight in commit 403a3d91c.  Back-patch to 9.5, as that was.
src/bin/pg_dump/pg_backup_db.c