From: Howard Chu Date: Tue, 26 Jan 2016 22:13:01 +0000 (+0000) Subject: ITS#8324 fix a6ccef73ed288271f9b5871909d14a2e481c81ae X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8f88b1b0ba208c51da70736626aeeb5daac6e3f2;p=openldap ITS#8324 fix a6ccef73ed288271f9b5871909d14a2e481c81ae Removing the WRITEMAP test dropped this into the MDB_VL32 code path, which was wrong. --- diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index fa5416f436..be36d4967e 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -2428,7 +2428,7 @@ mdb_page_alloc(MDB_cursor *mc, int num, MDB_page **mp) rc = MDB_MAP_FULL; goto fail; } -#ifdef _WIN32 +#if defined(_WIN32) && !defined(MDB_VL32) if (!(env->me_flags & MDB_RDONLY)) { void *p; p = (MDB_page *)(env->me_map + env->me_psize * pgno);