forked from organicmaps/organicmaps
Minor logic fix in IndexProxy.
This commit is contained in:
parent
25b5505faa
commit
127f16df1d
1 changed files with 16 additions and 12 deletions
|
@ -151,8 +151,11 @@ private:
|
|||
}
|
||||
else
|
||||
{
|
||||
if (++m_QueriesSkipped > 8)
|
||||
Close();
|
||||
if (m_pIndex)
|
||||
{
|
||||
if (++m_QueriesSkipped > 8)
|
||||
Close();
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
@ -167,6 +170,17 @@ private:
|
|||
Close();
|
||||
}
|
||||
|
||||
void Close()
|
||||
{
|
||||
if (m_pIndex)
|
||||
{
|
||||
// LOG(LINFO, (m_Path));
|
||||
delete m_pIndex;
|
||||
m_pIndex = NULL;
|
||||
m_QueriesSkipped = 0;
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
void Open()
|
||||
|
@ -181,16 +195,6 @@ private:
|
|||
}
|
||||
}
|
||||
|
||||
void Close()
|
||||
{
|
||||
if (m_pIndex)
|
||||
{
|
||||
// LOG(LINFO, (m_Path));
|
||||
delete m_pIndex;
|
||||
m_pIndex = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
m2::RectD m_Rect;
|
||||
string m_Path; // TODO: Store prefix and suffix of path in MultiIndexAdapter.
|
||||
IndexT * m_pIndex;
|
||||
|
|
Loading…
Add table
Reference in a new issue