summaryrefslogtreecommitdiff
path: root/lib/tdb/common/freelist.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-12-19 15:47:50 +1030
committerRusty Russell <rusty@rustcorp.com.au>2011-12-19 07:52:01 +0100
commitb64494535dc62f4073fc6302847593ed6e6ec38b (patch)
treefc81a835f7f0c559b1d85fb3ebc33b0f9e4e42b0 /lib/tdb/common/freelist.c
parent6260d8c29b4828511ecd1c3fc176612e0a0c73ce (diff)
downloadsamba-b64494535dc62f4073fc6302847593ed6e6ec38b.tar.gz
samba-b64494535dc62f4073fc6302847593ed6e6ec38b.tar.bz2
samba-b64494535dc62f4073fc6302847593ed6e6ec38b.zip
tdb: be more careful on 4G files.
I came across a tdb which had wrapped to 4G + 4K, and the contents had been destroyed by processes which thought it only 4k long. Fix this by checking on open, and making tdb_oob() check for wrap itself. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Mon Dec 19 07:52:01 CET 2011 on sn-devel-104
Diffstat (limited to 'lib/tdb/common/freelist.c')
-rw-r--r--lib/tdb/common/freelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/common/freelist.c b/lib/tdb/common/freelist.c
index 927078a7aa..6358f64a04 100644
--- a/lib/tdb/common/freelist.c
+++ b/lib/tdb/common/freelist.c
@@ -56,7 +56,7 @@ int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off, struct tdb_record
rec->magic, off));
return -1;
}
- if (tdb->methods->tdb_oob(tdb, rec->next+sizeof(*rec), 0) != 0)
+ if (tdb->methods->tdb_oob(tdb, rec->next, sizeof(*rec), 0) != 0)
return -1;
return 0;
}