From 61859d152d019a9b36841f79cd7becd86d8ebcb4 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Sat, 18 Jan 2020 15:55:05 -0500 Subject: [PATCH] Corrected a missing argument from the call to DBFlagMismatches() that causes the recovery option (magic -r) to fail with a segfault (which is definitely not helpful for recovering lost work). --- database/DBio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/DBio.c b/database/DBio.c index fbc76738..9043c47f 100644 --- a/database/DBio.c +++ b/database/DBio.c @@ -874,7 +874,7 @@ DBReadBackup(name) return FALSE; } /* Update timestamp flags from dbCellReadDef() */ - DBFlagMismatches(); + DBFlagMismatches(cellDef); } else {