Remove dead code in do_pg_backup_start().
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Apr 2022 19:56:01 +0000 (15:56 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 11 Apr 2022 19:56:01 +0000 (15:56 -0400)
commit9de692c10176e2af00dc915b122e07bd6903185c
treeaf5cc8f6e8a96f3ca6f60b07cf7b124accc3a132
parent5e70d8b5d18b0a71528dc6f11ade31a9d10e00cb
Remove dead code in do_pg_backup_start().

As of commit 39969e2a1, no caller of do_pg_backup_start() passes NULL
for labelfile or tblspcmapfile, nor is it plausible that any would
do so in the future.  Remove the code that coped with that case,
as (a) it's dead and (b) it causes Coverity to bleat about possibly
leaked storage.

While here, do some janitorial work on the function's header comment.
src/backend/access/transam/xlog.c