diff options
Diffstat (limited to 'source3/tdb')
-rw-r--r-- | source3/tdb/tdb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/tdb/tdb.c b/source3/tdb/tdb.c index ff56ffaf2b..b57945c8e1 100644 --- a/source3/tdb/tdb.c +++ b/source3/tdb/tdb.c @@ -385,6 +385,9 @@ static int tdb_new_database(TDB_CONTEXT *tdb, int hash_size) /* create the header */ header.version = TDB_VERSION; header.hash_size = hash_size; + lseek(tdb->fd, 0, SEEK_SET); + ftruncate(tdb->fd, 0); + if (write(tdb->fd, &header, sizeof(header)) != sizeof(header)) return -1; /* the freelist and hash pointers */ |