Skip to content
Snippets Groups Projects
Commit 290daee5 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

Fix: txn is invalidated by mdb_txn_commit()

parent c360fdde
No related branches found
No related tags found
No related merge requests found
......@@ -408,7 +408,9 @@ txnReturn:
goto return_results;
}
if (( rs->sr_err = mdb_txn_commit( txn )) != 0 ) {
rs->sr_err = mdb_txn_commit( txn );
txn = NULL;
if ( rs->sr_err != 0 ) {
rs->sr_text = "txn_commit failed";
Debug( LDAP_DEBUG_TRACE,
LDAP_XSTRING(mdb_add) ": %s : %s (%d)\n",
......@@ -416,7 +418,6 @@ txnReturn:
rs->sr_err = LDAP_OTHER;
goto return_results;
}
txn = NULL;
}
Debug(LDAP_DEBUG_TRACE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment