mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
Fix ITS#3255, boi_bdb comparisons
This commit is contained in:
parent
05fd32498d
commit
d9927adf88
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue