mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
ITS#8312 Fix loose pages in commit(nested txn)
This commit is contained in:
parent
27f71b4dd3
commit
db510359c9
@ -3474,7 +3474,7 @@ mdb_txn_commit(MDB_txn *txn)
|
||||
}
|
||||
|
||||
/* Append our loose page list to parent's */
|
||||
for (lp = &parent->mt_loose_pgs; *lp; lp = &NEXT_LOOSE_PAGE(lp))
|
||||
for (lp = &parent->mt_loose_pgs; *lp; lp = &NEXT_LOOSE_PAGE(*lp))
|
||||
;
|
||||
*lp = txn->mt_loose_pgs;
|
||||
parent->mt_loose_count += txn->mt_loose_count;
|
||||
|
Loading…
Reference in New Issue
Block a user