summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier2021-07-29 01:59:49 +0000
committerMichael Paquier2021-07-29 01:59:49 +0000
commit2ad98fdf53edf1a90123e3b189cc6f0a31986891 (patch)
treec39410bdcddbe939a42e9a93f15449ab105490a9
parent245de48455daaf51f2f3e8b198d87b5dd9fd4516 (diff)
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
-rw-r--r--src/bin/pg_verifybackup/pg_verifybackup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_verifybackup/pg_verifybackup.c b/src/bin/pg_verifybackup/pg_verifybackup.c
index f5ebd57a47..bb93b43093 100644
--- a/src/bin/pg_verifybackup/pg_verifybackup.c
+++ b/src/bin/pg_verifybackup/pg_verifybackup.c
@@ -304,6 +304,7 @@ main(int argc, char **argv)
"but was not the same version as %s.\n"
"Check your installation.",
"pg_waldump", full_path, "pg_verifybackup");
+ exit(1);
}
}