Add missing exit() in pg_verifybackup when failing to find pg_waldump pg_verifybackup needs by default pg_waldump to check after a range of WAL segments required for a backup, except if --no-parse-wal is specified. The code checked for the presence of the binary pg_waldump in an installation and reported an error, but it forgot to properly exit(). This could lead to confusing errors reported.
Reviewed-by: Robert Haas, Fabien Coelho Discussion: https://postgr.es/m/[email protected] Backpatch-through: 13 Branch ------ REL_14_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/67445deb7eca32d25721dffb228b009bfbe415d5 Modified Files -------------- src/bin/pg_verifybackup/pg_verifybackup.c | 1 + 1 file changed, 1 insertion(+)
