mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
Simpler mdb_drop().
MDB_DBI_CHANGED(,MAIN_DBI) is never true.
This commit is contained in:
parent
e5f41ce56b
commit
06df0a4655
@ -9511,7 +9511,7 @@ int mdb_drop(MDB_txn *txn, MDB_dbi dbi, int del)
|
||||
if (F_ISSET(txn->mt_flags, MDB_TXN_RDONLY))
|
||||
return EACCES;
|
||||
|
||||
if (dbi > MAIN_DBI && TXN_DBI_CHANGED(txn, dbi))
|
||||
if (TXN_DBI_CHANGED(txn, dbi))
|
||||
return MDB_BAD_DBI;
|
||||
|
||||
rc = mdb_cursor_open(txn, dbi, &mc);
|
||||
|
Loading…
Reference in New Issue
Block a user