Skip to content
Snippets Groups Projects
Commit d9927adf authored by Howard Chu's avatar Howard Chu
Browse files

Fix ITS#3255, boi_bdb comparisons

parent 05fd3249
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,7 @@ int bdb_entry_get(
#endif
if( op ) boi = (struct bdb_op_info *) op->o_private;
if( boi != NULL && op->o_bd == boi->boi_bdb ) {
if( boi != NULL && op->o_bd->be_private == boi->boi_bdb->be_private ) {
txn = boi->boi_txn;
locker = boi->boi_locker;
}
......
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