From: Leo Yuriev Date: Fri, 5 Dec 2014 19:30:31 +0000 (+0000) Subject: ITS#7987 fix excessive space for single write txn X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1a7243b3f41ba1896b0ee69be5498f769cd2cfe5;p=openldap ITS#7987 fix excessive space for single write txn --- diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index f61bbdf6ed..1127dd0e3d 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -4603,7 +4603,7 @@ mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode if (!(flags & MDB_RDONLY)) { MDB_txn *txn; int tsize = sizeof(MDB_txn), size = tsize + env->me_maxdbs * - (sizeof(MDB_db)+sizeof(MDB_cursor)+sizeof(unsigned int)+1); + (sizeof(MDB_db)+sizeof(MDB_cursor *)+sizeof(unsigned int)+1); txn = calloc(1, size); if (txn) { txn->mt_dbs = (MDB_db *)((char *)txn + tsize);