Drop unnecessary lock

This commit is contained in:
Howard Chu 2007-12-06 15:59:28 +00:00
parent e237f4cc43
commit 3658226e95

View File

@ -546,7 +546,6 @@ hdb_dn2id_add(
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
DB *db = bdb->bi_dn2id->bdi_db;
DBT key, data;
DB_LOCK lock;
ID nid;
int rc, rlen, nrlen;
diskNode *d;
@ -580,10 +579,6 @@ hdb_dn2id_add(
key.data = &nid;
/* We hold this lock until the TXN completes */
rc = bdb_dn2id_lock( bdb, &e->e_nname, 1, TXN_ID( txn ), &lock );
if ( rc ) goto leave;
/* Need to make dummy root node once. Subsequent attempts
* will fail harmlessly.
*/