1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-28 09:33:54 +02:00

Fix broken in f26c95964 tests.config.ConfigTest.test_corrupt_backup_content

This commit is contained in:
Mikhail A. Kulagin 2021-10-14 16:23:49 +03:00
parent da5eb961c4
commit 21abadfff7

View File

@ -1144,7 +1144,9 @@ get_backup_filelist(pgBackup *backup, bool strict)
{
elog(WARNING, "Invalid CRC of backup control file '%s': %u. Expected: %u",
backup_filelist_path, content_crc, backup->content_crc);
return NULL;
parray_free(files);
files = NULL;
}
/* redundant sanity? */