Removed duplicated lock

Around line 167 there is already a LOCK(bitdb.cs_db) that covers everything. Re-locking is useless.
This commit is contained in:
xanatos 2012-08-27 15:08:20 +03:00
parent 772351b0d5
commit 028ec224b8
1 changed files with 1 additions and 4 deletions

View File

@ -195,10 +195,7 @@ CDB::CDB(const char *pszFile, const char* pszMode) :
{
delete pdb;
pdb = NULL;
{
LOCK(bitdb.cs_db);
--bitdb.mapFileUseCount[strFile];
}
--bitdb.mapFileUseCount[strFile];
strFile = "";
throw runtime_error(strprintf("CDB() : can't open database file %s, error %d", pszFile, ret));
}