ITS#8728 fix MDB_VL32 freeing overflow page

Fix #2420
This commit is contained in:
Howard Chu 2017-09-09 15:10:23 +01:00
parent 02e5dcd2fa
commit edda20146e
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7
1 changed files with 4 additions and 0 deletions

View File

@ -6288,6 +6288,10 @@ release:
if (rc)
return rc;
}
#ifdef MDB_VL32
if (mc->mc_ovpg == mp)
mc->mc_ovpg = NULL;
#endif
mc->mc_db->md_overflow_pages -= ovpages;
return 0;
}