FIx prev commit

This commit is contained in:
Howard Chu 2012-12-10 17:21:24 -08:00
parent 0ce6bb4be0
commit 282be11654

View File

@ -2127,7 +2127,7 @@ mdb_txn_commit(MDB_txn *txn)
if (env->me_pghead) {
/* make sure first page of freeDB is touched and on freelist */
rc = mdb_page_search(&mc, NULL, MDB_PS_MODIFY);
if (rc) {
if (rc && rc != MDB_NOTFOUND) {
fail:
mdb_txn_abort(txn);
return rc;
@ -2163,7 +2163,7 @@ free2:
key.mv_size = MAXKEYSIZE+1;
key.mv_data = NULL;
rc = mdb_page_search(&mc, &key, MDB_PS_MODIFY);
if (rc)
if (rc && rc != MDB_NOTFOUND)
goto fail;
#if MDB_DEBUG > 1