]> 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:47 +0000 (11:26 -0500)
commit1127377a578bde76ed09edd7cd5d8965365c8aaa
tree6c0654855de4099219aee4798cd99ee5c112028c
parent204d779695607eae5c6c0fa314516201b0af357f
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