ITS#7515 Fix mdb_page_unspill() in nested txn.

Malloc a page in this txn, not in a parent.
This commit is contained in:
Hallvard Furuseth 2013-09-23 20:13:27 +02:00
parent a3b3482854
commit 8e1d10e828

View File

@ -1818,7 +1818,7 @@ mdb_page_unspill(MDB_txn *tx0, MDB_page *mp, MDB_page **ret)
if (env->me_flags & MDB_WRITEMAP) {
np = mp;
} else {
np = mdb_page_malloc(txn, num);
np = mdb_page_malloc(tx0, num);
if (!np)
return ENOMEM;
if (num > 1)