mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Rename first iterator to prevent shadowing.
This commit is contained in:
parent
b42ff60c7e
commit
d7f80b6dcb
@ -604,11 +604,11 @@ bool CDB::PeriodicFlush(std::string strFile)
|
||||
{
|
||||
// Don't do this if any databases are in use
|
||||
int nRefCount = 0;
|
||||
std::map<std::string, int>::iterator mi = bitdb.mapFileUseCount.begin();
|
||||
while (mi != bitdb.mapFileUseCount.end())
|
||||
std::map<std::string, int>::iterator mit = bitdb.mapFileUseCount.begin();
|
||||
while (mit != bitdb.mapFileUseCount.end())
|
||||
{
|
||||
nRefCount += (*mi).second;
|
||||
mi++;
|
||||
nRefCount += (*mit).second;
|
||||
mit++;
|
||||
}
|
||||
|
||||
if (nRefCount == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user