mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
ITS#9007 don't free loose writemap pages
Broken in ITS#8756
This commit is contained in:
parent
25670398b1
commit
332b9734ff
1 changed files with 1 additions and 1 deletions
2
external/db_drivers/liblmdb/mdb.c
vendored
2
external/db_drivers/liblmdb/mdb.c
vendored
|
@ -3461,9 +3461,9 @@ mdb_freelist_save(MDB_txn *txn)
|
||||||
} else {
|
} else {
|
||||||
x = mdb_mid2l_search(dl, mp->mp_pgno);
|
x = mdb_mid2l_search(dl, mp->mp_pgno);
|
||||||
mdb_tassert(txn, dl[x].mid == mp->mp_pgno);
|
mdb_tassert(txn, dl[x].mid == mp->mp_pgno);
|
||||||
|
mdb_dpage_free(env, mp);
|
||||||
}
|
}
|
||||||
dl[x].mptr = NULL;
|
dl[x].mptr = NULL;
|
||||||
mdb_dpage_free(env, mp);
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
/* squash freed slots out of the dirty list */
|
/* squash freed slots out of the dirty list */
|
||||||
|
|
Loading…
Reference in a new issue