aboutsummaryrefslogtreecommitdiff
path: root/src/gdbmreorg.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2016-07-09 10:18:02 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2016-07-09 10:18:02 +0300
commit0eafbb93c82a489204f54259593f2aaeb9cdbfc4 (patch)
treee7fad3689d9110d7132ee2fe5f9bdcc2011474ef /src/gdbmreorg.c
parente4d2c56435a23ce1d3a0c06518231f632311de04 (diff)
downloadgdbm-0eafbb93c82a489204f54259593f2aaeb9cdbfc4.tar.gz
gdbm-0eafbb93c82a489204f54259593f2aaeb9cdbfc4.tar.bz2
All gdbm functions return immediately if the DB is in inconsistent sate (needs recovery).
* src/gdbm.h.in (GDBM_NEED_RECOVERY): New error code. * src/gdbmdefs.h (GDBM_ASSERT_CONSISTENCY): New macro. * src/gdbmerrno.c: Update. * src/gdbmopen.c (gdbm_open): Initialize need_recovery and last_error. * src/gdbmcount.c (gdbm_count): Return immediately if the database needs recovery. * src/gdbmdelete.c (gdbm_delete): Likewise. * src/gdbmdump.c (gdbm_dump_to_file, gdbm_dump): Likewise. * src/gdbmexists.c (gdbm_exists): Likewise. * src/gdbmexp.c (gdbm_export_to_file): Likewise. * src/gdbmfetch.c (gdbm_fetch): Likewise. * src/gdbmimp.c (gdbm_import_from_file): Likewise. * src/gdbmreorg.c (gdbm_reorganize): Likewise. * src/gdbmseq.c (gdbm_firstkey): Likewise. * src/gdbmsetopt.c (gdbm_nextkey): Likewise. * src/gdbmstore.c (gdbm_store): Likewise. * src/gdbmsync.c (gdbm_sync): Likewise.
Diffstat (limited to 'src/gdbmreorg.c')
-rw-r--r--src/gdbmreorg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gdbmreorg.c b/src/gdbmreorg.c
index 360f5c8..8a0cc64 100644
--- a/src/gdbmreorg.c
+++ b/src/gdbmreorg.c
@@ -65,6 +65,8 @@ gdbm_reorganize (GDBM_FILE dbf)
struct stat fileinfo; /* Information about the file. */
int index; /* Use in moving the bucket cache. */
+ /* Return immediately if the database needs recovery */
+ GDBM_ASSERT_CONSISTENCY (dbf, -1);
/* Readers can not reorganize! */
if (dbf->read_write == GDBM_READER)

Return to:

Send suggestions and report system problems to the System administrator.