lmdb: Simpler mdb_drop().

MDB_DBI_CHANGED(,MAIN_DBI) is never true.

Change-Id: I0d12b9965d8251908ec41d1febc6b5c354a93a01
This commit is contained in:
Hallvard Furuseth 2015-07-04 13:48:06 +02:00 committed by Leo Yuriev
parent 6524dbf3a1
commit 9e52d29fd8

2
mdb.c
View File

@ -9343,7 +9343,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);