VirtualAlloc is not for MDB_VL32
This commit is contained in:
Howard Chu 2016-01-26 22:08:49 +00:00
parent 2aa0b3b02b
commit 78ad970a2c

View file

@ -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);